<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title><![CDATA[孤城浪子的地盘]]></title> 
<link>https://www.gclz.cn/index.php</link> 
<description><![CDATA[]]></description> 
<language>zh-cn</language> 
<copyright><![CDATA[孤城浪子的地盘]]></copyright>
<item>
<link>https://www.gclz.cn/post/751/</link>
<title><![CDATA[windows 系统中，怎么修改文件的修改日期时间戳？]]></title> 
<author>孤城浪子 &lt;admin@yourname.com&gt;</author>
<category><![CDATA[系统经验]]></category>
<pubDate>Wed, 04 Mar 2026 06:45:50 +0000</pubDate> 
<guid>https://www.gclz.cn/post/751/</guid> 
<description>
<![CDATA[ 
	打开 PowerShell：<br /><br />&nbsp; &nbsp; 在文件修改的目标文件夹空白处，点击鼠标右键，选择&ldquo;在终端中打开&rdquo;（这通常打开的是 PowerShell）。<br /><br />&nbsp; &nbsp; 或者按 Win + R，输入 powershell，然后回车。<br /><br />输入命令：<br />假设你要将文件 D:&#92;测试&#92;文档.txt 的修改日期改为 2025年3月15日 下午3点30分50秒，可以使用以下命令：<br /><br /><br /><strong>(Get-Item &quot;D:&#92;测试&#92;文档.txt&quot;).LastWriteTime = Get-Date &quot;2025-03-15 15:30:50&quot;</strong><br /><br />
]]>
</description>
</item><item>
<link>https://www.gclz.cn/post/750/</link>
<title><![CDATA[安卓apk签名批处理，自动添加V1 V2 V3签名]]></title> 
<author>孤城浪子 &lt;admin@yourname.com&gt;</author>
<category><![CDATA[软件]]></category>
<pubDate>Fri, 19 Sep 2025 03:05:54 +0000</pubDate> 
<guid>https://www.gclz.cn/post/750/</guid> 
<description>
<![CDATA[ 
	<div>把下面内容保存为 apksign.bat 文件：<br /></div><div><br /></div><div>@echo off</div>setlocal enabledelayedexpansion<br /><br />:: 设置 build-tools 路径<br />set &quot;BUILD_TOOLS_DIR=.&#92;33.0.2&quot;<br />:: 检查是否传入了参数<br />if &quot;%~1&quot; equ &quot;&quot; (<br />&nbsp;&nbsp;&nbsp;&nbsp;echo.<br />&nbsp;&nbsp;&nbsp;&nbsp;echo 错误：请提供一个文件名作为参数,可以不输入扩展名，处理时自动添加.apk。<br />&nbsp;&nbsp;&nbsp;&nbsp;echo.<br />&nbsp;&nbsp;&nbsp;&nbsp;echo 示例: %~n0 appname 或 %~n0 appname.apk<br />&nbsp;&nbsp;&nbsp;&nbsp;goto :end<br />)<br /><br />:: 获取原始文件名（不含路径）<br />set &quot;original_filename=%~nx1&quot;<br /><br />:: 获取文件扩展名<br />set &quot;file_ext=%~x1&quot;<br /><br />:: 判断文件扩展名是否为空，如果为空，则添加.apk<br />if &quot;%file_ext%&quot; equ &quot;&quot; (<br />&nbsp;&nbsp;&nbsp;&nbsp;set &quot;original_filename=%original_filename%.apk&quot;<br />)<br /><br />:: 获取文件名（不包含路径和后缀）<br />for %%f in (&quot;%original_filename%&quot;) do set &quot;input_file=%%~nf&quot;<br /><br />:: 定义处理过程中的临时和最终文件名称<br />set &quot;v1_signed_apk=%input_file%_v1.apk&quot;<br />set &quot;v1_signed_v2_aligned_apk=%input_file%_align.apk&quot;<br />set &quot;final_signed_apk=%input_file%_signed.apk&quot;<br />del &quot;%v1_signed_apk%&quot;<br />del &quot;%v1_signed_v2_aligned_apk%&quot;<br /><br />echo.<br />echo =========================================================<br />echo 开始对文件 &quot;%original_filename%&quot; 进行 APK 签名和对齐<br />echo =========================================================<br />echo.<br /><br />:: 步骤1：V1 签名<br />:: 将原始APK进行V1签名，并输出到v1_signed_apk文件<br />echo 正在执行 V1 签名...<br />jarsigner -verbose -keystore key.keystore -storepass 123456 -signedjar &quot;%v1_signed_apk%&quot; &quot;%original_filename%&quot; key &gt;nul<br />if errorlevel 1 goto :error_handler<br /><br />echo.<br />echo V1 签名完成。生成文件: &quot;%v1_signed_apk%&quot;<br />echo.<br /><br />:: 步骤2：zipalign 对齐<br />:: 对V1签名后的文件进行对齐操作，并输出到v1_signed_v2_aligned_apk文件<br />echo 正在执行 zipalign 对齐...<br />zipalign 4 &quot;%v1_signed_apk%&quot; &quot;%v1_signed_v2_aligned_apk%&quot;<br />if errorlevel 1 goto :error_handler<br /><br />echo.<br />echo 对齐完成。生成文件: &quot;%v1_signed_v2_aligned_apk%&quot;<br />echo.<br /><br />:: 步骤3：V2 签名<br />:: 对齐后的文件进行V2签名，并输出到final_signed_apk文件<br />echo&nbsp;&nbsp;正在执行 V2 签名...<br />call &quot;%BUILD_TOOLS_DIR%&#92;apksigner.bat&quot;&nbsp;&nbsp;sign --ks key.keystore --ks-key-alias key --ks-pass pass:123456 --out &quot;%final_signed_apk%&quot; &quot;%v1_signed_v2_aligned_apk%&quot;<br />if errorlevel 1 goto :error_handler<br /><br />echo.<br />echo V2 签名完成。最终文件: &quot;%final_signed_apk%&quot;<br />echo.<br /><br />:: 步骤4：验证最终文件的 zipalign 对齐<br />echo 正在验证最终文件的对齐...<br />zipalign -c -v 4 &quot;%final_signed_apk%&quot; &gt;nul<br />call &quot;%BUILD_TOOLS_DIR%&#92;apksigner.bat&quot;&nbsp;&nbsp;verify -v --print-certs &quot;%final_signed_apk%&quot; <br />echo.<br />echo 签名和对齐流程全部完成！ <br />echo 最终文件: &quot;%final_signed_apk%&quot;<br /><br />:: 清理中间文件<br />echo 正在清理中间文件...<br />del &quot;%v1_signed_apk%&quot;<br />del &quot;%v1_signed_v2_aligned_apk%&quot;<br /><br />goto :end<br /><br />:error_handler<br />echo.<br />echo 错误：签名或对齐过程中出现问题。请检查命令和文件。<br />echo.<br /><br />:end<br />endlocal<br />
]]>
</description>
</item><item>
<link>https://www.gclz.cn/post/749/</link>
<title><![CDATA[关闭罗技游戏软件切换模式弹窗 Logitech Gaming Software poup disable]]></title> 
<author>孤城浪子 &lt;admin@yourname.com&gt;</author>
<category><![CDATA[网络]]></category>
<pubDate>Tue, 08 Apr 2025 11:01:26 +0000</pubDate> 
<guid>https://www.gclz.cn/post/749/</guid> 
<description>
<![CDATA[ 
	<div>编辑配置文件</div><div>%localappdata%&#92;Logitech&#92;Logitech Gaming Software&#92;settings.json</div><div>在最后一个括号前添加<br /><br /><pre>, &quot;notification&quot; :&nbsp;&nbsp;&nbsp;&nbsp;&#123;&nbsp;&nbsp;&nbsp;&nbsp; &quot;showDpiChangeToastNotify&quot; : false,&nbsp;&nbsp;&nbsp;&nbsp; &quot;showProfileChangeToastNotify&quot; : false&nbsp;&nbsp; &#125;<br /><br />保存退出，然后把settings.json设置成只读<br /><br />如图：<br /><img class="insertimage" src="attachment.php?fid=196" border="0" /><br /><br /><br /></pre><p>&nbsp;&nbsp;&nbsp;&nbsp; To anyone that stumbles with this you can disable the notifications&nbsp;&nbsp;by editing the file located at: `%localappdata%&#92;Logitech&#92;Logitech Gaming&nbsp;&nbsp;Software&#92;settings.json`&nbsp;&nbsp; </p><p>&nbsp;&nbsp;&nbsp;&nbsp; and adding this before the last &#125;:&nbsp;&nbsp; </p>, &quot;notification&quot; :&nbsp;&nbsp;&nbsp;&nbsp;&#123;&nbsp;&nbsp;&nbsp;&nbsp; &quot;showDpiChangeToastNotify&quot; : false,&nbsp;&nbsp;&nbsp;&nbsp; &quot;showProfileChangeToastNotify&quot; : false&nbsp;&nbsp; &#125;</div><div><br /></div><div>Set the file to read-only!<pre><br /><br /><br /></pre></div>
]]>
</description>
</item><item>
<link>https://www.gclz.cn/post/748/</link>
<title><![CDATA[Windows Server 2025 和 Win11不能直接拖放文件到任务栏软件上打开]]></title> 
<author>孤城浪子 &lt;admin@yourname.com&gt;</author>
<category><![CDATA[系统经验]]></category>
<pubDate>Sun, 06 Apr 2025 10:25:52 +0000</pubDate> 
<guid>https://www.gclz.cn/post/748/</guid> 
<description>
<![CDATA[ 
	<div>Windows Server 2025 和 Win11不能直接拖放文件到任务栏软件上打开，解决方法：</div><div><br /></div><div>Win+R，输入secpol.msc 打开本地安全策略，</div><div>本地策略--安全选项--用户账户控制：用于内置管理员账户的管理员批准模式，</div><div>双击，已启用，重启电脑，OK</div><div><br /></div><div>适用于24H2版本<br /></div>
]]>
</description>
</item><item>
<link>https://www.gclz.cn/post/747/</link>
<title><![CDATA[Windows Server 2025 24H2 无法访问SMB NAS共享解决方法]]></title> 
<author>孤城浪子 &lt;admin@yourname.com&gt;</author>
<category><![CDATA[网络]]></category>
<pubDate>Sun, 15 Sep 2024 13:21:53 +0000</pubDate> 
<guid>https://www.gclz.cn/post/747/</guid> 
<description>
<![CDATA[ 
	<div><img class="insertimage" src="attachment.php?fid=194" border="0" /></div><div><br /></div><div><span style="font-size: medium; color: #0000ff"><strong><br /></strong></span></div><div><span style="font-size: medium; color: #0000ff"><strong>原因：微软在&nbsp;&nbsp;24H2 更新中强制使用 SMB 签名、禁用访客回退等措施</strong></span></div><div><span style="font-size: medium; color: #0000ff"><strong>解决方法：组策略---Microsoft 网络客户端: 对通信进行数字签名(始终) 改成禁用</strong></span><br /></div><div><br /></div><div><img class="insertimage" src="attachment.php?fid=195" border="0" /></div><div><br /></div><br />
]]>
</description>
</item><item>
<link>https://www.gclz.cn/post/746/</link>
<title><![CDATA[k8s 节点重置并重新加入集群]]></title> 
<author>孤城浪子 &lt;admin@yourname.com&gt;</author>
<category><![CDATA[系统经验]]></category>
<pubDate>Sat, 08 Jun 2024 02:35:26 +0000</pubDate> 
<guid>https://www.gclz.cn/post/746/</guid> 
<description>
<![CDATA[ 
	<p>在 Kubernetes 中，您可能需要重置节点并将其重新加入集群，原因有很多，例如：</p> <ul><li>节点出现故障需要重建</li><li>节点操作系统需要升级</li><li>节点配置需要更改</li><li>节点需要从集群中永久移除</li></ul> <p>以下是一些关于如何重置 Kubernetes 节点并将其重新加入集群的步骤：</p> <p><strong>步骤 1： 驱逐节点（可选）</strong></p> <p>如果可能，最好先从集群中安全地驱逐节点。这将确保在节点不可用时，工作负载能够平稳地迁移到其他节点上。您可以使用以下命令驱逐节点：</p> <pre>kubectl drain &lt;node-name&gt; <span class="hljs-attr">--ignore-daemonsets</span> <span class="hljs-attr">--delete-local-data</span> </pre> <p><strong>步骤 2： 从集群中删除节点</strong></p> <p>使用以下命令从集群中删除节点：</p> <pre>kubectl <span class="hljs-keyword">delete</span> node &lt;node-name&gt; </pre> <p><strong>步骤 3： 清理节点</strong></p> <p>在节点本身上，您需要清理所有 Kubernetes 组件和数据。这可以通过以下步骤完成：</p> <ul><li> <p>停止 kubelet 服务：</p> <pre>systemctl stop kubelet </pre> </li><li> <p>禁用 kubelet 服务：</p> <pre>systemctl <span class="hljs-built_in">disable</span> kubelet </pre> </li><li> <p>清除所有 Kubernetes 相关文件和目录，包括：</p> <ul><li>/var/lib/kubelet/*</li><li>/etc/cni/net.d/*</li><li>/var/lib/cni/*</li><li>/etc/kubernetes/*</li></ul> <p>您可以使用以下命令删除这些文件和目录：</p> <pre><span class="hljs-built_in">rm</span> -rf /var/lib/kubelet/* /etc/cni/net.d/* /var/lib/cni/* /etc/kubernetes/* </pre> </li></ul> <p><strong>步骤 4： 重置网络配置（如果需要）</strong></p> <p>如果您的节点使用 CNI 网络插件，您可能还需要重置网络配置。这可以通过删除 CNI 配置文件并重启网络服务来完成。</p> <p><strong>步骤 5： 重新加入节点</strong></p> <p>清理节点后，您可以使用与最初添加节点时相同的步骤将其重新添加到集群中。这通常涉及运行由 kubeadm join 命令生成的加入脚本。</p> <p><strong>注意事项：</strong></p> <ul><li>在执行这些步骤之前，请备份您的 Kubernetes 集群和节点。</li><li>这些步骤可能会导致数据丢失，因此请谨慎操作。</li><li>在某些情况下，您可能需要执行其他步骤来重置和重新加入节点，具体取决于您的环境。</li></ul>
]]>
</description>
</item><item>
<link>https://www.gclz.cn/post/745/</link>
<title><![CDATA[Docker Hub 国内镜像加速器]]></title> 
<author>孤城浪子 &lt;admin@yourname.com&gt;</author>
<category><![CDATA[系统经验]]></category>
<pubDate>Fri, 07 Jun 2024 07:10:08 +0000</pubDate> 
<guid>https://www.gclz.cn/post/745/</guid> 
<description>
<![CDATA[ 
	<p>由于网络原因，国内用户访问 Docker Hub 下载镜像的速度可能比较慢。为了提升下载速度，可以使用国内的 Docker 镜像加速器。以下是几个常用的选择：</p> <p><strong>1.&nbsp;&nbsp;阿里云镜像加速器</strong></p> <ul><li>阿里云容器镜像服务提供了免费的镜像加速服务，可以显著提升 Docker 镜像下载速度。</li><li>你需要先注册一个阿里云账号，然后在容器镜像服务控制台获取加速器地址。</li><li>具体配置方法可以参考阿里云官方文档：<a href="https://help.aliyun.com/document_detail/60750.html">https://help.aliyun.com/document_detail/60750.html</a></li></ul> <p><strong>2.&nbsp;&nbsp;DaoCloud 镜像加速器</strong></p> <ul><li>DaoCloud 也提供了免费的 Docker 镜像加速器服务。</li><li>你需要先注册一个 DaoCloud 账号，然后在控制台获取加速器地址。</li><li>具体配置方法可以参考 DaoCloud 官方文档：<a href="https://www.daocloud.io/mirror#accelerator-doc">https://www.daocloud.io/mirror#accelerator-doc</a></li></ul> <p><strong>3.&nbsp;&nbsp;网易云镜像加速器</strong></p> <ul><li>网易云容器镜像服务也提供免费的镜像加速服务。</li><li>你需要先注册一个网易云账号，然后在容器镜像服务控制台获取加速器地址。</li><li>具体配置方法可以参考网易云官方文档。</li></ul> <p><strong>4.&nbsp;&nbsp;腾讯云镜像加速器</strong></p> <ul><li>腾讯云容器镜像服务也提供免费的镜像加速服务。</li><li>你需要先注册一个腾讯云账号，然后在容器镜像服务控制台获取加速器地址。</li><li>具体配置方法可以参考腾讯云官方文档。</li></ul> <p><strong>5.&nbsp;&nbsp;七牛云镜像加速器</strong></p> <ul><li>七牛云容器镜像服务也提供免费的镜像加速服务。</li><li>你需要先注册一个七牛云账号，然后在容器镜像服务控制台获取加速器地址。</li><li>具体配置方法可以参考七牛云官方文档。</li></ul> <p><strong>如何配置 Docker 镜像加速器：</strong></p> <ul><li>不同的操作系统配置方法有所不同，具体可以参考对应镜像加速器的官方文档。</li><li>一般来说，需要修改 Docker 的配置文件 daemon.json，添加镜像加速器的地址。</li></ul> <p><strong>需要注意的是：</strong></p> <ul><li>不同镜像加速器的加速效果可能会有所差异，建议根据自己的网络情况选择合适的加速器。</li><li>一些镜像加速器可能会限制免费用户的流量或下载速度。</li><li>使用镜像加速器可能会带来一些安全风险，建议选择信誉良好的服务提供商。</li></ul>
]]>
</description>
</item><item>
<link>https://www.gclz.cn/post/744/</link>
<title><![CDATA[如何使用国内源安装 Docker 的方法]]></title> 
<author>孤城浪子 &lt;admin@yourname.com&gt;</author>
<category><![CDATA[系统经验]]></category>
<pubDate>Fri, 07 Jun 2024 06:50:54 +0000</pubDate> 
<guid>https://www.gclz.cn/post/744/</guid> 
<description>
<![CDATA[ 
	如何在 /etc/apt/sources.list.d/docker.list 文件中使用国内源安装 Docker 的方法： <p><strong>步骤：</strong></p> <ol><li> <p><strong>备份原始文件:</strong> 在修改之前，最好备份一下原始的 docker.list 文件，以便出现问题时可以恢复：</p> <pre>sudo <span class="hljs-built_in">cp</span> /etc/apt/sources.list.d/docker.list /etc/apt/sources.list.d/docker.list.bak </pre> </li><li> <p><strong>编辑 docker.list 文件：</strong> 使用你喜欢的文本编辑器打开 docker.list 文件：</p> <pre>sudo nano /etc/apt/sources.list.d/docker.list </pre> </li><li> <p><strong>添加国内源：</strong></p> <p>将以下内容添加到 docker.list 文件中，替换掉原有的内容（如果存在）。可以选择其中一个源：</p> <ul><li> <p><strong>阿里云：</strong></p> <pre>deb [<span class="hljs-built_in">arch</span>=amd64] https://mirrors.aliyun.com/docker-ce/linux/ubuntu focal stable </pre> </li><li> <p><strong>清华大学：</strong></p> <pre>deb [<span class="hljs-built_in">arch</span>=amd64] https://mirrors.tuna.tsinghua.edu.cn/docker-ce/linux/ubuntu focal stable </pre> </li><li> <p><strong>网易：</strong></p> <pre>deb [<span class="hljs-built_in">arch</span>=amd64] http://mirrors.163.com/docker-ce/linux/ubuntu focal stable </pre> </li></ul> <p><strong>注意：</strong></p> <ul><li>将 focal 替换为你正在使用的 Ubuntu 版本代号。可以使用 lsb_release -cs 命令查看。</li><li>建议选择地理位置上离你最近的镜像源，以获得更快的下载速度。</li></ul> </li><li> <p><strong>更新软件包列表并安装 Docker：</strong></p> <pre>sudo apt update sudo apt install docker-ce docker-ce-cli containerd.io </pre> </li><li> <p><strong>验证安装：</strong></p> <pre>sudo docker run hello-world </pre> <p>如果 Docker 安装成功，你将看到 &quot;Hello from Docker!&quot; 的输出信息。</p> </li></ol> <p>现在，你已经成功配置了国内源，并可以使用 apt 命令安装和管理 Docker 了。</p>
]]>
</description>
</item><item>
<link>https://www.gclz.cn/post/743/</link>
<title><![CDATA[Debian 12 (bookworm) 安装方法及其国内软件源]]></title> 
<author>孤城浪子 &lt;admin@yourname.com&gt;</author>
<category><![CDATA[系统经验]]></category>
<pubDate>Mon, 03 Jun 2024 15:28:07 +0000</pubDate> 
<guid>https://www.gclz.cn/post/743/</guid> 
<description>
<![CDATA[ 
	把 /etc/apt/sources.list 里面的内容全部注释掉，增加以下 Debian 12 的软件源： <h2>国内常见镜像站点</h2> <p>Debian全球镜像站列表：https://www.debian.org/mirror/list 。</p> <p>下面列出国内常用的镜像站点及 /etc/apt/sources.list 中的具体对应内容：</p> <h3>阿里云镜像站</h3> <pre class="codehilite highlighter-hljs">deb https:<span class="hljs-comment">//mirrors.aliyun.com/debian/ bookworm main non-free non-free-firmware contrib<br /></span>deb-src https:<span class="hljs-comment">//mirrors.aliyun.com/debian/ bookworm main non-free non-free-firmware contrib<br /></span>deb https:<span class="hljs-comment">//mirrors.aliyun.com/debian-security/ bookworm-security main<br /></span>deb-src https:<span class="hljs-comment">//mirrors.aliyun.com/debian-security/ bookworm-security main<br /></span>deb https:<span class="hljs-comment">//mirrors.aliyun.com/debian/ bookworm-updates main non-free non-free-firmware contrib<br /></span>deb-src https:<span class="hljs-comment">//mirrors.aliyun.com/debian/ bookworm-updates main non-free non-free-firmware contrib<br /></span>deb https:<span class="hljs-comment">//mirrors.aliyun.com/debian/ bookworm-backports main non-free non-free-firmware contrib</span> <br />deb-src https:<span class="hljs-comment">//mirrors.aliyun.com/debian/ bookworm-backports main non-free non-free-firmware contrib</span> </pre> <h3>腾讯云镜像站</h3> <pre class="codehilite highlighter-hljs">deb https:<span class="hljs-comment">//mirrors.tencent.com/debian/ bookworm main non-free non-free-firmware contrib</span> <br />deb-src https:<span class="hljs-comment">//mirrors.tencent.com/debian/ bookworm main non-free non-free-firmware contrib</span> <br />deb https:<span class="hljs-comment">//mirrors.tencent.com/debian-security/ bookworm-security main</span> <br />deb-src https:<span class="hljs-comment">//mirrors.tencent.com/debian-security/ bookworm-security main</span> <br />deb https:<span class="hljs-comment">//mirrors.tencent.com/debian/ bookworm-updates main non-free non-free-firmware contrib</span> <br />deb-src https:<span class="hljs-comment">//mirrors.tencent.com/debian/ bookworm-updates main non-free non-free-firmware contrib</span> <br />deb https:<span class="hljs-comment">//mirrors.tencent.com/debian/ bookworm-backports main non-free non-free-firmware contrib</span> <br />deb-src https:<span class="hljs-comment">//mirrors.tencent.com/debian/ bookworm-backports main non-free non-free-firmware contrib</span> </pre> <h3>网易镜像站</h3> <pre class="codehilite highlighter-hljs">deb https://mirrors.163.com/debian/ bookworm main non-free non-free-firmware contrib <br />deb-src https://mirrors.163.com/debian/ bookworm main non-free non-free-firmware contrib <br />deb https://mirrors.163.com/debian-security/ bookworm-security main <br />deb-src https://mirrors.163.com/debian-security/ bookworm-security main <br />deb https://mirrors.163.com/debian/ bookworm-updates main non-free non-free-firmware contrib <br />deb-src https://mirrors.163.com/debian/ bookworm-updates main non-free non-free-firmware contrib <br />deb https://mirrors.163.com/debian/ bookworm-backports main non-free non-free-firmware contrib <br />deb-src https://mirrors.163.com/debian/ bookworm-backports main non-free non-free-firmware contrib </pre> <h3>华为镜像站</h3> <pre class="codehilite highlighter-hljs">deb https:<span class="hljs-comment">//mirrors.huaweicloud.com/debian/ bookworm main non-free non-free-firmware contrib</span> <br />deb-src https:<span class="hljs-comment">//mirrors.huaweicloud.com/debian/ bookworm main non-free non-free-firmware contrib</span> <br />deb https:<span class="hljs-comment">//mirrors.huaweicloud.com/debian-security/ bookworm-security main</span> <br />deb-src https:<span class="hljs-comment">//mirrors.huaweicloud.com/debian-security/ bookworm-security main</span> <br />deb https:<span class="hljs-comment">//mirrors.huaweicloud.com/debian/ bookworm-updates main non-free non-free-firmware contrib</span> <br />deb-src https:<span class="hljs-comment">//mirrors.huaweicloud.com/debian/ bookworm-updates main non-free non-free-firmware contrib</span> <br />deb https:<span class="hljs-comment">//mirrors.huaweicloud.com/debian/ bookworm-backports main non-free non-free-firmware contrib</span> <br />deb-src https:<span class="hljs-comment">//mirrors.huaweicloud.com/debian/ bookworm-backports main non-free non-free-firmware contrib</span> </pre> <h3>清华大学镜像站</h3> <pre class="codehilite highlighter-hljs">deb https:<span class="hljs-comment">//mirrors.tuna.tsinghua.edu.cn/debian/ bookworm main contrib non-free non-free-firmware</span> <br />deb-src https:<span class="hljs-comment">//mirrors.tuna.tsinghua.edu.cn/debian/ bookworm main contrib non-free non-free-firmware</span> <br />deb https:<span class="hljs-comment">//mirrors.tuna.tsinghua.edu.cn/debian/ bookworm-updates main contrib non-free non-free-firmware</span> <br />deb-src https:<span class="hljs-comment">//mirrors.tuna.tsinghua.edu.cn/debian/ bookworm-updates main contrib non-free non-free-firmware</span> <br />deb https:<span class="hljs-comment">//mirrors.tuna.tsinghua.edu.cn/debian/ bookworm-backports main contrib non-free non-free-firmware</span> <br />deb-src https:<span class="hljs-comment">//mirrors.tuna.tsinghua.edu.cn/debian/ bookworm-backports main contrib non-free non-free-firmware</span> <br />deb https:<span class="hljs-comment">//mirrors.tuna.tsinghua.edu.cn/debian-security bookworm-security main contrib non-free non-free-firmware</span> <br />deb-src https:<span class="hljs-comment">//mirrors.tuna.tsinghua.edu.cn/debian-security bookworm-security main contrib non-free non-free-firmware</span> </pre> <h3>中科大镜像站</h3> <pre class="codehilite highlighter-hljs">deb https:<span class="hljs-comment">//mirrors.ustc.edu.cn/debian/ bookworm main contrib non-free non-free-firmware</span> <br />deb-src https:<span class="hljs-comment">//mirrors.ustc.edu.cn/debian/ bookworm main contrib non-free non-free-firmware</span> <br />deb https:<span class="hljs-comment">//mirrors.ustc.edu.cn/debian/ bookworm-updates main contrib non-free non-free-firmware</span> <br />deb-src https:<span class="hljs-comment">//mirrors.ustc.edu.cn/debian/ bookworm-updates main contrib non-free non-free-firmware</span> <br />deb https:<span class="hljs-comment">//mirrors.ustc.edu.cn/debian/ bookworm-backports main contrib non-free non-free-firmware</span> <br />deb-src https:<span class="hljs-comment">//mirrors.ustc.edu.cn/debian/ bookworm-backports main contrib non-free non-free-firmware</span> <br />deb https:<span class="hljs-comment">//mirrors.ustc.edu.cn/debian-security/ bookworm-security main contrib non-free non-free-firmware</span> <br />deb-src https:<span class="hljs-comment">//mirrors.ustc.edu.cn/debian-security/ bookworm-security main contrib non-free non-free-firmware</span></pre>
]]>
</description>
</item><item>
<link>https://www.gclz.cn/post/742/</link>
<title><![CDATA[Workstation Pro 17.6.3免费了！附下载地址]]></title> 
<author>孤城浪子 &lt;admin@yourname.com&gt;</author>
<category><![CDATA[软件]]></category>
<pubDate>Sun, 02 Jun 2024 08:58:47 +0000</pubDate> 
<guid>https://www.gclz.cn/post/742/</guid> 
<description>
<![CDATA[ 
	VMware 于2025年2月24日推出了桌面虚拟化平台的最新版本 Workstation Pro 17.6.3 和 Fusion Pro&nbsp;&nbsp;13.6.3，并且宣布这两个产品对个人使用完全免费。大家可以点击下面的链接下载，下载需要登录 Broadcom Support&nbsp;&nbsp;Portal，如果你在上面还没有账号的话可以注册一个。&nbsp;&nbsp;&nbsp;&nbsp;<ul><li><a href="https://support.broadcom.com/group/ecx/productfiles?subFamily=VMware%20Workstation%20Pro&amp;displayGroup=VMware%20Workstation%20Pro%2017.0%20for%20Windows&amp;release=17.6.3&amp;os=&amp;servicePk=undefined&amp;language=EN&amp;freeDownloads=true">Workstation Pro 17.6.3 下载</a>&nbsp;&nbsp;(适用于 Windows 桌面上的虚拟化)</li><li><a href="https://support.broadcom.com/group/ecx/productdownloads?subfamily=VMware%20Fusion&amp;freeDownloads=true">Fusion Pro 13.6.3 下载</a>&nbsp;&nbsp;(适用于 Mac OS 桌面上的虚拟化)</li></ul>&nbsp;&nbsp;&nbsp;&nbsp;<p>注意：只有这两个最新版本以及以后的版本才支持个人使用 (Personal Use) 免费许可。以 Workstation Pro&nbsp;&nbsp;为例，在第一次启动时会要求你输入 license key，对于个人用户而言，你只需要选 Personal Use 就可以免费使用了。</p>&nbsp;&nbsp; <div class="wp-block-image"> <img class="wp-image-12776" src="https://babudiu.com/wp-content/uploads/2023/11/971dad9fd6ac94c1d0b87917a26c38a4-1536x668.png" border="0" width="720" height="295" /></div>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <p>需要注意的是，Workstation Pro 和 Fusion Pro 的免费仅适用于非商业用途，VMware 对于个人使用和商业用途的定义如下：</p>&nbsp;&nbsp;&nbsp;&nbsp;<ul><li><strong>个人使用</strong>： Workstation 或 Fusion 安装到电脑后，被用于运行非商业目的的虚拟机。个人使用明确排除将产品用于商业目的，包括经营或运营企业、组织、政府组织或教育机构等。</li><li><strong>商业用途</strong>：企业许可允许将产品用于商业目的，包括经营或运营企业、组织、政府组织或教育机构等。</li></ul>&nbsp;&nbsp;&nbsp;&nbsp;<p>把 Workstation Pro 和 Fusion Pro 用于商业用途的话需要购买企业许可。</p>
]]>
</description>
</item><item>
<link>https://www.gclz.cn/post/741/</link>
<title><![CDATA[宝塔面板 邮局管理器 rspamd未安装 无法修复问题的解决办法]]></title> 
<author>孤城浪子 &lt;admin@yourname.com&gt;</author>
<category><![CDATA[网络]]></category>
<pubDate>Mon, 07 Aug 2023 07:59:27 +0000</pubDate> 
<guid>https://www.gclz.cn/post/741/</guid> 
<description>
<![CDATA[ 
	<div>首先按照<a href="https://rspamd.com/downloads.html" target="_blank" title="https://rspamd.com/downloads.html">https://rspamd.com/downloads.html</a>操作，安装出现缺少以下库</div><div><br /></div>The following packages have unmet dependencies:<br />&nbsp;rspamd : Depends: libc++1-16 (&gt;= 1:16.0.0~++20230308013049+7b4e71bcf991) but it is not installable<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Depends: libc++abi1-16 (&gt;= 1:16.0.0~++20230308013049+7b4e71bcf991) but it is not installable<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Depends: libunwind-16 (&gt;= 1:16.0.0~++20230308013049+7b4e71bcf991) but it is not installable<br />E: Unable to correct problems, you have held broken packages.<br /><br /><div>解决办法：<br /></div>wget https://apt.llvm.org/llvm.sh<br />chmod +x llvm.sh<br />sudo ./llvm.sh 16<br /><br />sudo apt install libc++-16-dev libc++abi-16-dev libunwind-16-dev<br />
]]>
</description>
</item><item>
<link>https://www.gclz.cn/post/740/</link>
<title><![CDATA[Windows禁用弹窗http://www.msftconnecttest.com/redirect 方法]]></title> 
<author>孤城浪子 &lt;admin@yourname.com&gt;</author>
<category><![CDATA[网络]]></category>
<pubDate>Thu, 28 Oct 2021 02:51:14 +0000</pubDate> 
<guid>https://www.gclz.cn/post/740/</guid> 
<description>
<![CDATA[ 
	<div>Windows使用网络位置感知 (NLA) 服务检测网络的属性并确定如何管理与该网络的连接。 NLA 使用名为网络连接状态指示器 (NCSI) 的组件来确定计算机是否已成功连接到网络，以及网络是否具有 Intranet 或 Internet 连接。</div><div><p>NCSI 同时使用主动和被动探测器。 这些探测器由任意网络接口中的更改触发。 当按照&quot;症状&quot;部分所述将计算机连接到网络时，NCSI 将开始一个包含以下一个或多个内容的进程： </p> <ul><li><a href="https://docs.microsoft.com/zh-cn/troubleshoot/windows-client/networking/internet-explorer-edge-open-connect-corporate-public-network#ncsi-active-probes-and-the-network-status-alert">NCSI 活动探测器和网络状态警报</a></li><li><a href="https://docs.microsoft.com/zh-cn/troubleshoot/windows-client/networking/internet-explorer-edge-open-connect-corporate-public-network#authentication-and-the-automatic-sign-in-page">身份验证和自动登录页</a></li><li><a href="https://docs.microsoft.com/zh-cn/troubleshoot/windows-client/networking/internet-explorer-edge-open-connect-corporate-public-network#ncsi-passive-monitoring-the-msn-portal-page-and-the-network-status-alert">NCSI 被动监视和网络状态警报</a></li></ul><div><br /></div><div><h2 class="heading-anchor">解决方法</h2><div>开始-运行-gpedit<br /></div><p>若要使用组策略禁用 NCSI 活动探测器，请配置以下 GPO：</p> <ul><li><strong>计算机配置</strong> &#92;<strong>管理模板</strong> &#92;<strong>系统</strong> &#92;<strong>Internet 通信管理</strong> &#92;<strong>Internet 通信设置</strong> &#92;<strong>关闭Windows网络连接状态指示器活动测试</strong> <ul><li>值：已启用</li></ul> </li></ul> <p>若要使用组策略禁用 NCSI 被动探测器，请配置以下 GPO：</p> <ul><li><strong>计算机配置</strong> &#92;<strong>管理模板</strong> &#92;<strong>网络</strong> &#92;<strong>网络连接状态指示器</strong> &#92;<strong>指定被动轮询</strong>。 <ul><li>值：已启用</li></ul></li></ul><div>来源：<a href="https://docs.microsoft.com/zh-cn/troubleshoot/windows-client/networking/internet-explorer-edge-open-connect-corporate-public-network" target="_blank">https://docs.microsoft.com/zh-cn/troubleshoot/windows-client/networking/internet-explorer-edge-open-connect-corporate-public-network</a><br /></div></div></div>
]]>
</description>
</item><item>
<link>https://www.gclz.cn/post/739/</link>
<title><![CDATA[foobar2000 转换Apple lossless ALAC无损出错解决方法]]></title> 
<author>孤城浪子 &lt;admin@yourname.com&gt;</author>
<category><![CDATA[软件]]></category>
<pubDate>Sat, 16 Oct 2021 01:34:11 +0000</pubDate> 
<guid>https://www.gclz.cn/post/739/</guid> 
<description>
<![CDATA[ 
	<div>使用foobar2000自带编码器转换为Apple lossless格式时出错：<span><br /></span></div><div><span>An error occurred while writing to file (<em class="qkunPe">The encoder has terminated prematurely with code 2</em> (0x00000002); please re-check parameters) <br /></span></div><div><span><br /></span></div><div>解决方法：<br /></div><div>创建自定义编码器预设，然后指向相关编码器，例如 </div>D:&#92;foobar2000&#92;encoders&#92;qaac64.exe<br /><div><br /></div><div>编码器名 Encoder name:QAAC (可自定)</div><div>参数Paramenters填:&nbsp; --alac -o %d -</div><div>最下面Settings填:&nbsp; -A -o %d -</div><div><br /></div><div><br /></div><div><img class="insertimage" src="attachment.php?fid=193" border="0" /></div><div><br /></div><div><br /></div>
]]>
</description>
</item><item>
<link>https://www.gclz.cn/post/738/</link>
<title><![CDATA[Windows Server 2022 2019 2016 KMS client setup keys]]></title> 
<author>孤城浪子 &lt;admin@yourname.com&gt;</author>
<category><![CDATA[服务器设置]]></category>
<pubDate>Mon, 06 Sep 2021 03:13:21 +0000</pubDate> 
<guid>https://www.gclz.cn/post/738/</guid> 
<description>
<![CDATA[ 
	<h2 class="heading-anchor">Windows Server LTSC/LTSB versions</h2> <h3 class="heading-anchor">Windows Server 2022</h3> <div class="table-scroll-wrapper has-inner-focus"><table border="0" class="table"><caption class="visually-hidden">Windows Server 2022</caption> <thead> <tr> <th>Operating system edition</th> <th>KMS Client Setup Key</th> </tr> </thead> <tbody> <tr> <td>Windows Server 2022 Datacenter</td> <td>WX4NM-KYWYW-QJJR4-XV3QB-6VM33</td> </tr> <tr> <td>Windows Server 2022 Standard</td> <td>VDYBN-27WPP-V4HQT-9VMD4-VMK7H</td> </tr> </tbody> </table></div> <h3 class="heading-anchor">Windows Server 2019</h3> <div class="table-scroll-wrapper has-inner-focus"><table border="0" class="table"><caption class="visually-hidden">Windows Server 2019</caption> <thead> <tr> <th>Operating system edition</th> <th>KMS Client Setup Key</th> </tr> </thead> <tbody> <tr> <td>Windows Server 2019 Datacenter</td> <td>WMDGN-G9PQG-XVVXX-R3X43-63DFG</td> </tr> <tr> <td>Windows Server 2019 Standard</td> <td>N69G4-B89J2-4G8F4-WWYCC-J464C</td> </tr> <tr> <td>Windows Server 2019 Essentials</td> <td>WVDHN-86M7X-466P6-VHXV7-YY726</td> </tr> </tbody> </table></div> <h3 class="heading-anchor">Windows Server 2016</h3> <div class="table-scroll-wrapper has-inner-focus"><table border="0" class="table"><caption class="visually-hidden">Windows Server 2016</caption> <thead> <tr> <th>Operating system edition</th> <th>KMS Client Setup Key</th> </tr> </thead> <tbody> <tr> <td>Windows Server 2016 Datacenter</td> <td>CB7KF-BWN84-R7R2Y-793K2-8XDDG</td> </tr> <tr> <td>Windows Server 2016 Standard</td> <td>WC2BQ-8NRM3-FDDYY-2BFGV-KHKQY</td> </tr> <tr> <td>Windows Server 2016 Essentials</td> <td>JCKRF-N37P4-C2D82-9YXRT-4M63B</td></tr></tbody></table></div><h3 class="heading-anchor"><span style="font-weight: normal">来源：https://docs.microsoft.com/en-us/windows-server/get-started/kms-client-activation-keys</span><br /></h3><div id="simple-translate"><div><div class="simple-translate-panel " style="width: 300px; height: 200px; top: 0px; left: 0px; font-size: 13px; background-color: #ffffff"><div class="simple-translate-result-wrapper" style="overflow: hidden"><div class="simple-translate-result-contents"><p style="color: #000000" dir="auto" class="simple-translate-result"></p><p style="color: #737373" dir="auto" class="simple-translate-candidate"></p></div></div></div></div></div>
]]>
</description>
</item><item>
<link>https://www.gclz.cn/post/737/</link>
<title><![CDATA[Windows Server 2022 系统评估版转为正式版方法]]></title> 
<author>孤城浪子 &lt;admin@yourname.com&gt;</author>
<category><![CDATA[服务器设置]]></category>
<pubDate>Mon, 06 Sep 2021 03:10:38 +0000</pubDate> 
<guid>https://www.gclz.cn/post/737/</guid> 
<description>
<![CDATA[ 
	<p>微软试用版的系统叫做评估版，使用时间是180天。过期之后就会提示你需要激活。需要永久激活系统首先要转为正式版。</p> <p>总共两个步骤，如果你还是不会转，或者卡住在10%，那就建议你重新安装正式版的吧。</p><div> <strong>1、管理员模式运行cmd,输入命令:DISM /online /Get-CurrentEdition，得到结果：</strong></div><div><br /></div><div>C:&#92;Users&#92;Administrator&gt;DISM /online /Get-CurrentEdition<br /><br />部署映像服务和管理工具<br />版本: 10.0.20348.1<br /><br />映像版本: 10.0.20348.202<br /><br />当前版本为:<br /><br />当前版本 : ServerDatacenterEval<br /><br />操作成功完成。</div><div><br /></div><div>其中ServerDatacenterEval去掉Eval后，就是当前的Edition ID</div><div><br /></div><div><strong>2、输入命令：</strong><strong>DISM /online /Set-Edition:ServerDatacenter /ProductKey:WX4NM-KYWYW-QJJR4-XV3QB-6VM33 /AcceptEula 这里的命令是升级Windows Server 2022 数据中心版的例子，如果是其他版本，需要替换掉对应的key和Edition，运行结果如下：</strong></div><div><br /></div><div>C:&#92;Users&#92;Administrator&gt;DISM /online /Set-Edition:ServerDatacenter /ProductKey:WX4NM-KYWYW-QJJR4-XV3QB-6VM33 /AcceptEula<br /><br />部署映像服务和管理工具<br />版本: 10.0.20348.1<br /><br />映像版本: 10.0.20348.202<br /><br />开始升级组件...<br />开始安装产品密钥...<br />产品密钥安装已完成。<br /><br />正在添加程序包 Microsoft-Windows-ServerDatacenterEdition~31bf3856ad364e35~amd64~~10.0.20348.169<br />[==========================100.0%==========================]<br />组件升级已完成。</div><div><br /></div><div><br /></div><div>重新启动 Windows 就变成正式版了。</div>
]]>
</description>
</item>
</channel>
</rss>