<?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/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/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/724/</link>
<title><![CDATA[中国传统常用色彩]]></title> 
<author>孤城浪子 &lt;admin@yourname.com&gt;</author>
<category><![CDATA[系统经验]]></category>
<pubDate>Mon, 24 Feb 2014 20:58:51 +0000</pubDate> 
<guid>https://www.gclz.cn/post/724/</guid> 
<description>
<![CDATA[ 
	<img class="insertimage" src="attachment.php?fid=187" border="0" />
]]>
</description>
</item><item>
<link>https://www.gclz.cn/post/722/</link>
<title><![CDATA[CUE 文件及其格式说明]]></title> 
<author>孤城浪子 &lt;admin@yourname.com&gt;</author>
<category><![CDATA[系统经验]]></category>
<pubDate>Thu, 20 Feb 2014 17:36:03 +0000</pubDate> 
<guid>https://www.gclz.cn/post/722/</guid> 
<description>
<![CDATA[ 
	<p><span style="font-family: courier">　　CUE 文件，即 CUESheets ，光盘镜像辅助文件。通常用于光盘刻录、音乐播放等等。比如用 EAC 刻录CD光盘，或者用 Foobar2000 播放整轨音乐文件。</span></p><p><span style="font-family: courier"><br /></span></p> <p><span style="font-family: courier">　　CUE 文件是非常好的音乐专辑信息载体，使用它可以使专辑信息和音乐文件分离，从而达到播放整轨 WAV、FLAC、APE 等文件的目的。</span></p><p><span style="font-family: courier"><br /></span></p><p><span style="font-family: courier">　　<span style="line-height: 28px">由于篇幅有限，本文只描述音乐文件播放相关的内容，因此和刻录有关的信息可能不大详细，敬请原谅。</span></span></p><p><span style="font-family: courier"><br /></span></p> <p><span style="font-family: courier">　　本文档分为三部分：</span></p><p><span style="font-family: courier"><br /></span></p> <p><span style="font-family: courier">　　一、CUE 基本规范</span></p> <p><span style="font-family: courier">　　二、<span style="line-height: 28px">CUE 命令参考</span></span></p><p><span style="font-family: courier"><span style="line-height: 28px">　　三、</span><span style="line-height: 28px">范例解析</span></span></p><p><span style="font-family: courier"><span style="line-height: 28px"><br/>............<br/>
]]>
</description>
</item><item>
<link>https://www.gclz.cn/post/721/</link>
<title><![CDATA[金盾软件防火墙之快速设置]]></title> 
<author>孤城浪子 &lt;admin@yourname.com&gt;</author>
<category><![CDATA[系统经验]]></category>
<pubDate>Wed, 05 Feb 2014 07:00:38 +0000</pubDate> 
<guid>https://www.gclz.cn/post/721/</guid> 
<description>
<![CDATA[ 
	<span style="font-size: medium"><strong>一、设置白名单方法：</strong><br />&nbsp;在功能选择&mdash;&mdash;规则设置&mdash;&mdash;右击添加规则<br />&nbsp;匹配规则注意是&ldquo;放行&rdquo;<br /><div style="text-align: center"><img class="insertimage" src="attachment.php?fid=182" border="0" /></div><br /><br /><strong>二、WEB端口防护设置</strong><br /><div style="text-align: center"><img class="insertimage" src="attachment.php?fid=183" border="0" /></div><br /><br /><strong>三、远程桌面端口防护</strong><br /><div style="text-align: center"><img class="insertimage" src="attachment.php?fid=184" border="0" /></div><br /><br /><strong>四、要关闭其他端口，只留80和远程桌面 设置方法：</strong><br /><br />功能选择&mdash;&mdash;规则设置页面中设置规则达到效果<br /><br />先设置一条针对指定放行端口的过滤规则：<br /><div style="text-align: center"><img class="insertimage" src="attachment.php?fid=185" border="0" /></div><br /><br />再设置针对所有端口的拦截规则：<br /><div style="text-align: center"><img class="insertimage" src="attachment.php?fid=186" border="0" /></div><br /><span style="color: #ff0000">一定要先设置过滤规则，再添加拦截规则，顺序不能搞反！</span><br /><br /></span>
]]>
</description>
</item><item>
<link>https://www.gclz.cn/post/715/</link>
<title><![CDATA[如何才能让mysql自动递增的字段重新从1开始]]></title> 
<author>孤城浪子 &lt;admin@yourname.com&gt;</author>
<category><![CDATA[系统经验]]></category>
<pubDate>Thu, 13 Dec 2012 14:52:01 +0000</pubDate> 
<guid>https://www.gclz.cn/post/715/</guid> 
<description>
<![CDATA[ 
	SQL语句：<br /><br /><span style="color: #0000ff">ALTER</span> <span style="color: #0000ff">TABLE</span> tablename AUTO_INCREMENT = 1<br />
]]>
</description>
</item><item>
<link>https://www.gclz.cn/post/705/</link>
<title><![CDATA[win7系统中shs文件打开方法]]></title> 
<author>孤城浪子 &lt;admin@yourname.com&gt;</author>
<category><![CDATA[系统经验]]></category>
<pubDate>Sat, 10 Dec 2011 09:21:54 +0000</pubDate> 
<guid>https://www.gclz.cn/post/705/</guid> 
<description>
<![CDATA[ 
	<p>.shs文件是office生成的碎片文件,下面是微软的说明：</p><p>　　在 Microsoft Word 和 Microsoft Excel 中，您可以将选定的文档文本、绘图对象和图形拖放到 Windows&nbsp;&nbsp;桌面上。桌面上会创建表示该碎片文件的图标，同时还会在 Windows&#92;Desktop 子文件夹中创建一个扩展名为 .shs&nbsp;&nbsp;的文件。该文件是一个本机程序文档，其中包含已被选定并拖动到 Windows 桌面上的信息。如果选择并删除桌面图标，则也会删除相应的 .shs&nbsp;&nbsp;文件。您可以选择某个碎片文件并将其从桌面拖动到另一个文档中。 <br /><br /> 　　注意：碎片文件是特殊 OLE 对象，并且是不可读的文件。您既不能打开 .shs 文件，也不能将其插入到另一个文档中（例如，您无法通过使用&nbsp;&nbsp;Word 中&ldquo;插入&rdquo;菜单上的&ldquo;文件&rdquo;命令来插入一个 .shs&nbsp;&nbsp;文件）。若要将碎片放置到文档或工作簿中，必须将其拖动到相应的文档。但是，您可以重命名碎片对象或将其从一个目录移动到另一个目录，正如您可以重命名或 移动普通文件一样。 <br /><br /> 　　Word for Windows 碎片文件文档包含 0（零）英寸的边距设置。在将碎片文档拖动到另一个 Word 文档中时，由于碎片文件符合现有 Word 文档的页面设置，因此只会将碎片文件的内容转换为 Word 文档。 <br /></p><p>&nbsp;</p><p><strong>Windows 7取消了shs文件的支持，而xp系统是可以打开的。</strong></p><p>win7系统中打开shs文件的方法</p><p>下载附件：<a href="attachment.php?fid=181">点击这里下载文件</a><br /></p><p>双击shs.reg，导入注册表。</p> <p>然后把shscrap.dll，放在win7系统里C:&#92;Windows&#92;System32文件夹里面即可<br /></p>
]]>
</description>
</item><item>
<link>https://www.gclz.cn/post/701/</link>
<title><![CDATA[安卓Android星际塔防奖励点数修改方法 附已修改积分文件]]></title> 
<author>孤城浪子 &lt;admin@yourname.com&gt;</author>
<category><![CDATA[系统经验]]></category>
<pubDate>Fri, 18 Nov 2011 11:28:33 +0000</pubDate> 
<guid>https://www.gclz.cn/post/701/</guid> 
<description>
<![CDATA[ 
	修改方法：<br /><br />1.设置 --&gt; 应用程序 --&gt; 管理应用程序 --&gt; 星际塔防<br />2.依次点 强行停止&nbsp;&nbsp;--&gt; 清除数据<br />3.把设备连接电脑选大容量储存设备，或者把TF卡用读卡器连接到电脑<br />4.在电脑上用WINHEX或者uleadEdit之类的16进制修改软件打开SD卡根目录下的robo_defense_full.bak文件<br />5.查找 Points,往后面看，把04后面第5-8 位数(就是74前面4位)改成 FF FF FF FF，保存退出<br />6.把卡插回去运行游戏后 你就能看到你的奖励点数是 4294967295<br /><br />附件：已解锁所有东西，剩余奖励点数为4294967295<br /><a href="attachment.php?fid=179">点击这里下载文件</a><br />
]]>
</description>
</item><item>
<link>https://www.gclz.cn/post/700/</link>
<title><![CDATA[android 2.3.4 Root 方法,无须解锁直接ROOT]]></title> 
<author>孤城浪子 &lt;admin@yourname.com&gt;</author>
<category><![CDATA[系统经验]]></category>
<pubDate>Mon, 14 Nov 2011 21:28:59 +0000</pubDate> 
<guid>https://www.gclz.cn/post/700/</guid> 
<description>
<![CDATA[ 
	准备：<br /> 1.<span class="t_tag">下载</span>ROOT文件。<br /><a href="attachment.php?fid=178">点击这里下载文件</a><br /> 2.下载刷机工具FlashTool汉化版:<br /> <a href="http://115.com/file/e6m47w0w" target="_blank">http://115.com/file/e6m47w0w</a><br /><br />操作：<br /> 1. 下载 FlashTool，并解压到任意目录。以前下载过的就不用再下载了。主要是用到它的 adb 工具。<br /> 2. 下载Root新方法 .rar 并解压到FlashTool 中的&ldquo;x10flasher_lib&rdquo;目录里。<br /> 3.为增加成功机率，准备一张sd卡，记得要格式化，我格式化成Fat32的。<br /> 4. 双击&ldquo;x10flasher_lib&rdquo;目录中的&ldquo;Root.bat&rdquo;，根据提示操作即可。<br /> 5.中间有个等待10秒，再按任意键，过几秒手机开始重启，root成功......
]]>
</description>
</item><item>
<link>https://www.gclz.cn/post/698/</link>
<title><![CDATA[无线功率mW 和dBm 的换算]]></title> 
<author>孤城浪子 &lt;admin@yourname.com&gt;</author>
<category><![CDATA[系统经验]]></category>
<pubDate>Thu, 11 Aug 2011 14:16:57 +0000</pubDate> 
<guid>https://www.gclz.cn/post/698/</guid> 
<description>
<![CDATA[ 
	　　无线电发射机输出的射频信号，通过馈线（电缆）输送到天线，由天线以电磁波形式辐射出去。电磁波到达接收地点后，由天线接收下来（仅仅接收很小很小一部分功率），并通过馈线送到无线电接收机。因此在无线网络的工程中，计算发射装置的发射功率与天线的辐射能力非常重要。<br />　　Tx 是发射（Transmits）的简称。无线电波的发射功率是指在给定频段范围内的能量，通常有两种衡量或测量标准：<br /><blockquote>　　1、功率（W）：相对1 瓦（Watts）的线性水准。例如,WiFi 无线网卡的发射功率通常为0.036W ，或者说36mW。<br />　　2、增益（dBm）：相对1 毫瓦（milliwatt）的比例水准。例如,WiFi 无线网卡的发射增益为15.56dBm。<br /></blockquote><br />　　功率单位mW 和dBm 的换算：<br /><blockquote>　　1、dBm = 10 x log [ 功率mW]<br />　　2、mW = 10 [增益dBm / 10 dBm]<br /></blockquote><br />　在无线系统中，天线被用来把电流波转换成电磁波，在转换过程中还可以对发射和接收的信号进行&ldquo;放大&rdquo;，这种能量放大的度量成为&ldquo;增益（Gain）&rdquo;。天线增益的度量单位为&ldquo; dBi &rdquo;。由于无线系统中的电磁波能量是由发射设备的发射能量和天线的放大叠加作用产生，因此度量发射能量最好同一度量－增益（dB），例如，发射设备的功率为100mW ，或20dBm；天线的增益为10dBi ，则:<br /><br />发射总能量＝发射功率（ dBm ）＋天线增益（ dBi ）＝ 20dBm ＋ 10dBi ＝ 30dBm<br />或者: ＝ 1000mW ＝ 1W<br /><br />　　在&ldquo;小功率&rdquo;系统中（例如无线局域网络设备）每个dB 都非常重要，特别要记住&ldquo; 3 dB 法则&rdquo;。每增加或降低3 dB ，意味着增加一倍或降低一半的功率：<br /><blockquote>-3 dB = 1/2 功率<br />-6 dB = 1/4 功率<br />+3 dB = 2x 功率<br />+6 dB = 4x 功率<br /></blockquote><br />例如：<br /><blockquote>10W 的无线发射功率为40dBm<br />6.4W 的无线发射功率为38dBm<br />3.2W 的无线发射功率为35 dBm<br />1.6W 的无线发射功率为32 dBm<br />800 mW 的无线发射功率为29 dBm<br />400 mW 的无线发射功率为26dBm<br />200 mW 的无线发射功率为23dBm<br />100 mW 的无线发射功率为20dBm<br />50 mW 的无线发射功率为17dBm<br />25 mW 的无线发射功率为14dBm<br />12.5 mW 的无线发射功率为11dBm<br />10.34 mW 的无线发射功率为10 dBm<br />8.26 mW 的无线发射功率为9 dBm<br />6.25 mW 的无线发射功率为8 dBm<br />3.125 mW 的无线发射功率为5 dBm<br />1mW 的无线发射功率为0 dBm<br /></blockquote>　　功率/电平（dBm）：放大器的输出能力，一般单位为W、mW、dBm。dBm 是取1mW 作基准值，以分贝表示的绝对功率电平。<br />换算公式：<br />电平（dBm）=10lgW<br /><blockquote>5W&rarr;10lg5000=37dBm<br />10W&rarr;10lg10000=40dBm<br />20W&rarr;10lg20000=43dBm<br /></blockquote>功率每增加一倍，电平值增加3dBm<br />
]]>
</description>
</item><item>
<link>https://www.gclz.cn/post/697/</link>
<title><![CDATA[如何将 Internet Explorer 配置为可以同时下载多个文件？]]></title> 
<author>孤城浪子 &lt;admin@yourname.com&gt;</author>
<category><![CDATA[系统经验]]></category>
<pubDate>Thu, 30 Jun 2011 07:10:23 +0000</pubDate> 
<guid>https://www.gclz.cn/post/697/</guid> 
<description>
<![CDATA[ 
	默认情况下，Windows Internet Explorer 7 及其早期版本会将同时可下载的文件数限制为 2 个。Windows&nbsp;&nbsp;Internet Explorer 8 将同时可下载的文件数限制为 6&nbsp;&nbsp;个。此更改反映了现今多数用户通常拥有更快的连接速度。对于拨号连接，早期版本中的限制仍然适用。<br /><br /><ol><li>依次单击<strong class="uiterm">「开始」</strong>、<strong class="uiterm">&ldquo;运行&rdquo;</strong>，键入 <span class="userInput">gpedit.msc</span>，然后单击<strong class="uiterm">&ldquo;确定&rdquo;</strong>。&nbsp;&nbsp;</li><li>依次展开<strong class="uiterm">&ldquo;用户配置&rdquo;</strong>、<strong class="uiterm">&ldquo;管理模板&rdquo;</strong>、<strong class="uiterm">&ldquo;Windows 组件&rdquo;</strong>、<strong class="uiterm">&ldquo;Internet Explorer&rdquo;</strong>、<strong class="uiterm">&ldquo;安全功能&rdquo;</strong>和 <strong class="uiterm">AJAX</strong>。&nbsp;&nbsp;</li><li>将<strong class="uiterm">&ldquo;每台服务器的最大连接数 (HTTP 1.0)&rdquo;</strong>和<strong class="uiterm">&ldquo;每台服务器的最大连接数 (HTTP 1.1)&rdquo;</strong>选项设置为所需设置。必须更新策略或重新启动计算机，才能应用这些更改。 </li></ol>参考微软知识库：<br /><br /><a href="http://support.microsoft.com/kb/282402/zh-cn" target="_blank">http://support.microsoft.com/kb/282402/zh-cn</a><br /><br />
]]>
</description>
</item>
</channel>
</rss>