<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:wfw="http://wellformedweb.org/CommentAPI/">
<channel>
<title>北冥のBLOG</title>
<link>https://356799.xyz/</link>
<atom:link href="https://356799.xyz/feed/" rel="self" type="application/rss+xml" />
<language>zh-CN</language>
<description>Your description here.</description>
<lastBuildDate>Thu, 26 Feb 2026 08:34:00 +0000</lastBuildDate>
<pubDate>Thu, 26 Feb 2026 08:34:00 +0000</pubDate>
<item>
<title>腾讯云新加坡 99/年vps 使用脚本更换系统</title>
<link>https://356799.xyz/archives/38/</link>
<guid>https://356799.xyz/archives/38/</guid>
<pubDate>Thu, 26 Feb 2026 08:34:00 +0000</pubDate>
<dc:creator>beiming</dc:creator>
<description><![CDATA[腾讯云新加坡 99/年vps 使用脚本更换系统观前提示：腾讯云的部分虚拟化实例对单次 I/O 请求的大小有限制，直接使用脚本重装系统会报错，详见https://github.com/bin456...]]></description>
<content:encoded xml:lang="zh-CN"><![CDATA[
<h3>腾讯云新加坡 99/年vps 使用脚本更换系统</h3><p>观前提示：腾讯云的部分虚拟化实例对单次 I/O 请求的大小有限制，直接使用脚本重装系统会报错，详见<a href="https://github.com/bin456789/reinstall/issues/549">https://github.com/bin456789/reinstall/issues/549</a></p><p>本教程主要参考了<a href="https://github.com/bin456789/reinstall/issues/500">https://github.com/bin456789/reinstall/issues/500</a> 中@okrc 提出的方法，并根据自己实操编写出了本篇文章。</p><p><em>如果你的腾讯云vps可以直接重装且不报错，那可以忽略本篇文章。</em></p><h4>1.下载脚本（当前系统是  Linux）</h4><pre><code>curl -O https://raw.githubusercontent.com/bin456789/reinstall/main/reinstall.sh || wget -O ${_##*/} $_</code></pre><h4>2.执行脚本</h4><p>这里以安装 ubuntu 为例，记得在命令后加上 --hold 1</p><pre><code>bash reinstall.sh ubuntu 24.04 --minimal --hold 1</code></pre><h4>3.等待重启至Alpine</h4><p>依次执行</p><pre><code>echo 512 &gt; /sys/block/vda/queue/max_sectors_kb</code></pre><pre><code>cat /sys/block/vda/queue/max_sectors_kb
# 确保这里返回 512</code></pre><h4>4.执行/trans.sh</h4><pre><code>/trans.sh</code></pre><p><img src="https://s41.ax1x.com/2026/02/26/pZxotpt.png" alt="三条命令的截图" title="三条命令的截图"></p><p>感谢gemini <a href="https://gemini.google.com/share/097ba0ac32f0">https://gemini.google.com/share/097ba0ac32f0</a></p>
]]></content:encoded>
<slash:comments>0</slash:comments>
<comments>https://356799.xyz/archives/38/#comments</comments>
<wfw:commentRss>https://356799.xyz/feed/</wfw:commentRss>
</item>
<item>
<title>屏蔽黑群晖更新且但是不影响套件更新</title>
<link>https://356799.xyz/archives/36/</link>
<guid>https://356799.xyz/archives/36/</guid>
<pubDate>Tue, 20 Jan 2026 13:10:00 +0000</pubDate>
<dc:creator>beiming</dc:creator>
<description><![CDATA[屏蔽黑群晖更新且但是不影响套件更新适用于DSM 7.x前情提要： 群晖自从DSM7开始，更新机制变更为：系统更新和套件更新分开进行由于黑群晖的特殊性，系统更新往往会导致无法启动等问题，因此需要屏...]]></description>
<content:encoded xml:lang="zh-CN"><![CDATA[
<h3>屏蔽黑群晖更新且但是不影响套件更新</h3><h4>适用于DSM 7.x</h4><p>前情提要： 群晖自从DSM7开始，更新机制变更为：系统更新和套件更新分开进行<br><img src="https://356799.xyz/usr/uploads/2026/01/4168729473.png" alt="2026-01-20_211052_340.png" title="2026-01-20_211052_340.png"><br>由于黑群晖的特殊性，系统更新往往会导致无法启动等问题，因此需要屏蔽系统更新，但又希望能够正常更新套件</p><h5>解决方案一： 通过修改系统的hosts文件，屏蔽掉群晖更新</h5><p>步骤：</p><ol><li>使用SSH登录到你的黑群晖系统</li><li>以root用户身份编辑hosts文件，命令如下：<br>vi /etc/hosts</li><li><p>在hosts文件的末尾添加以下几行内容：</p><pre><code>127.0.0.1 global.download.synology.com
127.0.0.1 global.synologydownload.com
127.0.0.1 update.synology.com
127.0.0.1 update7.synology.com
127.0.0.1 autoupdate.synology.com
127.0.0.1 autoupdate7.synology.com
127.0.0.1 autoupdate7.synology.cn</code></pre></li><li>保存并退出编辑器</li><li>重启系统以确保更改生效</li></ol><h5>解决方案二： 修改/etc/synoinfo.conf 和 /etc.defaults/synoinfo.conf 文件</h5><p>步骤：</p><ol><li>使用SSH登录到你的黑群晖系统</li><li>以root用户身份编辑/etc/synoinfo.conf 文件，命令如下：<br>vi /etc/synoinfo.conf</li><li>找到上述域名将其改为一个不存在的域名</li><li>重复步骤2和3，编辑 /etc.defaults/synoinfo.conf 文件</li><li>保存并退出编辑器</li><li>重启系统以确保更改生效</li></ol><pre><code class="lang-text">原部分配置
printer_driver_host=&quot;https://global.download.synology.com/airprint/DSM7.3/latest&quot;
rss_server=&quot;http://update7.synology.com/autoupdate/genRSS.php&quot;
rss_server_ssl=&quot;https://update7.synology.com/autoupdate/genRSS.php&quot;
rss_server_v2=&quot;https://update7.synology.com/autoupdate/v2/getList&quot;
security_version_server=&quot;https://update7.synology.com/securityVersion&quot;
small_info_path=&quot;https://update7.synology.com/smallupdate&quot;
update_server=&quot;http://update7.synology.com/&quot;
update_server_ssl=&quot;https://update7.synology.com/&quot;</code></pre><pre><code class="lang-text">更改为
printer_driver_host=&quot;https://globewwwereral.download.synwrology.com/airprint/DSM7.3/latest&quot;
rss_server=&quot;http://updawerte7.sywernology.com/autoupdate/genRSS.php&quot;
rss_server_ssl=&quot;https://updawerte7.synologwry.com/autoupdate/genRSS.php&quot;
rss_server_v2=&quot;https://updawerte7.synolwreogy.com/autoupdate/v2/getList&quot;
security_version_server=&quot;https://updawerte7.synology.com/securityVersion&quot;
small_info_path=&quot;https://updawerte7.synowerlogy.com/smallupdate&quot;
update_server=&quot;http://updatwere7.synolwerogy.com/&quot;
update_server_ssl=&quot;https://updwerate7.sywernology.com/&quot;</code></pre><h6>群晖版本不同该配置所在的行也会不同,找域名修改即可。</h6><h6>其它的不要动！ 其它的不要动！ 其它的不要动！</h6><h6>害怕改错的先备份！先备份！先备份！</h6><p><a href="https://kb.synology.cn/zh-cn/DSM/tutorial/What_websites_does_Synology_NAS_connect_to_when_running_services_or_updating_software">群晖域名列表</a></p><p>参考:1.<a href="https://www.cnblogs.com/djd66/p/17589924.html">https://www.cnblogs.com/djd66/p/17589924.html</a><br>2.<a href="https://archive.synology.com/download/">https://archive.synology.com/download/</a></p>
]]></content:encoded>
<slash:comments>0</slash:comments>
<comments>https://356799.xyz/archives/36/#comments</comments>
<wfw:commentRss>https://356799.xyz/feed/</wfw:commentRss>
</item>
<item>
<title>Yubikey 安全密钥折腾记</title>
<link>https://356799.xyz/archives/31/</link>
<guid>https://356799.xyz/archives/31/</guid>
<pubDate>Sun, 21 Dec 2025 15:56:00 +0000</pubDate>
<dc:creator>beiming</dc:creator>
<description><![CDATA[Yubikey 安全密钥折腾记使用的是 YubiKey 5 NFC软件安装YubiKey ManagerYubico AuthenticatorYubiKey Manager 是带GUI的Yub...]]></description>
<content:encoded xml:lang="zh-CN"><![CDATA[
<h3>Yubikey 安全密钥折腾记</h3><h6>使用的是 YubiKey 5 NFC</h6><p><img src="https://356799.xyz/usr/uploads/2025/12/2944789794.webp" alt="5-nfc-blister-frontback.webp" title="5-nfc-blister-frontback.webp"></p><h4>软件安装</h4><p><a href="https://www.yubico.com/support/download/yubikey-manager/">YubiKey Manager</a><br><img src="https://356799.xyz/usr/uploads/2025/12/4167799512.png" alt="YubiKeyManager" title="YubiKeyManager"><br><a href="https://www.yubico.com/products/yubico-authenticator/">Yubico Authenticator</a></p><p>YubiKey Manager 是带GUI的Yubikey 管理器，可以管理 OTP、FIDO2和PIV。<br>还可以看到你的Yubikey 的详细信息，比如 <strong>固件版本</strong>和id，这里比较注意的是<strong>固件版本</strong>，某些版本的固件可能会有bug。</p><p>Yubico Authenticator 是用来生成和管理二次验证的密码，有安卓和苹果的App，支持通过NFC与Yubikey交互。</p><h4>平时使用(TOTP)</h4><p>是的，有没有看错，最平时使用的居然是TOTP。<br>通过下载 Yubico Authenticator，然后将平时使用的网站的TOTP密钥存储到Yubikey里，这样就不用担心密钥丢失然后无法登录了。<br>ps: Yubikey 也不能丢，最好买两个备用。</p><h4>平时使用(SSH via FIDO)</h4><p>通过 Yubikey 来管理SSH 密钥，在登录到服务器时需要插入并输入key的PID并触摸才能成功登录。否则就算天王老子来了也登录不了（dog）<br>ps: 需要在服务器上开启仅限密钥登录，否则就是白搭。<br>ps: 不止支持Linux服务器，任何支持使用SSH 密钥登录的都支持，比如Github</p><p>SSH via FIDO教程<br>以下操作必须插入 Yubikey 到你的电脑上<br>1.生成密钥</p><pre><code class="lang-bash">ssh-keygen -t ed25519-sk -O resident -O verify-required -C &quot;your_email@example.com&quot;</code></pre><p>在这里会让你输入Yubikey的<strong>FIDO2 PID</strong> 并触摸</p><p>2.将公钥复制到服务器上并<strong>设置仅限通过密钥登录</strong></p><pre><code>略</code></pre><p>3.之后使用ssh客户端登录即可，在登录时同样要输入Yubikey的FIDO2 PID 并触摸，之后就能登录到服务器了。</p><p>YubiKey的用途和功能实在太多了，比如PIV OTP 等等，功能也非常多样。<br>这里只列举一点点。</p><h3>参考</h3><p><a href="https://skywt.cn/blog/yubikey-intro">Yubikey 安全密钥折腾记（2）：使用入门</a><br><a href="https://developers.yubico.com/SSH/Securing_SSH_with_FIDO2.html">Securing SSH Authentication with FIDO2 Security Keys</a><br><a href="https://developers.yubico.com/SSH/">Securing SSH with the YubiKey</a><br><a href="https://www.yubico.com/setup/?utm_source=packaging&utm_campaign=setup">Set up your YubiKey</a></p>
]]></content:encoded>
<slash:comments>0</slash:comments>
<comments>https://356799.xyz/archives/31/#comments</comments>
<wfw:commentRss>https://356799.xyz/feed/</wfw:commentRss>
</item>
<item>
<title>Salute to the Best Win10</title>
<link>https://356799.xyz/archives/34/</link>
<guid>https://356799.xyz/archives/34/</guid>
<pubDate>Tue, 14 Oct 2025 00:00:00 +0000</pubDate>
<dc:creator>beiming</dc:creator>
<description><![CDATA[This will be the next new decade，yet the past ten years have still been the most brilliant chapte...]]></description>
<content:encoded xml:lang="zh-CN"><![CDATA[
<p>This will be the next new decade，yet the past ten years have still been the most brilliant chapter of my life.<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Salute to the Best Win10!<br>这将是下一个新的十年，然而过去的十年仍然是我人生中最辉煌的一章。<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;向最好的Win10致敬！</p><p><img src="https://356799.xyz/usr/uploads/2026/01/599853998.webp" alt="" title=""></p>
]]></content:encoded>
<slash:comments>0</slash:comments>
<comments>https://356799.xyz/archives/34/#comments</comments>
<wfw:commentRss>https://356799.xyz/feed/</wfw:commentRss>
</item>
<item>
<title>使用 openwrt 对抗校园网多设备检测</title>
<link>https://356799.xyz/archives/18/</link>
<guid>https://356799.xyz/archives/18/</guid>
<pubDate>Tue, 19 Aug 2025 16:19:00 +0000</pubDate>
<dc:creator>beiming</dc:creator>
<description><![CDATA[使用 openwrt 对抗校园网多设备检测这里使用Xiaomi Mi Router WR30U (stock layout)以 immortalwrt 24 分支为例 包含 ua3f1.打开 h...]]></description>
<content:encoded xml:lang="zh-CN"><![CDATA[
<h1>使用 openwrt 对抗校园网多设备检测</h1><p>这里使用Xiaomi Mi Router WR30U (stock layout)</p><h2>以 immortalwrt 24 分支为例 包含 ua3f</h2><h3>1.打开 <a href="https://firmware-selector.immortalwrt.org/">https://firmware-selector.immortalwrt.org/</a></h3><h3>2.选择你的设备</h3><h3>3.点击"自定义预安装软件包和/或首次启动脚本" 并在 预安装的软件包 的内容后添加如下内容</h3><pre><code class="lang-bash">kmod-nft-queue kmod-nft-tproxy luci-theme-argon luci-i18n-base-zh-cn luci-i18n-opkg-zh-cn </code></pre><p>这里我还一并添加了 wireguard eqos ddns-go</p><pre><code class="lang-bash">kmod-nft-queue kmod-nft-tproxy luci-proto-wireguard luci-app-ddns-go  luci-i18n-ddns-go-zh-cn luci-app-eqos luci-i18n-eqos-zh-cn luci-theme-argon luci-i18n-base-zh-cn luci-i18n-opkg-zh-cn </code></pre><h3>4.点击请求构建</h3><h3>5.安装ua3f</h3><p>打开 <a href="https://github.com/SunBK201/UA3F/releases">https://github.com/SunBK201/UA3F/releases</a> 选择与你设备价格相符的安装包下载并安装</p><h3>6.配置ua3f</h3><p>服务模式选择 TPROXY 全局重写 固定TTL 并启用L3 重写 eBPF 卸载</p><h3>7.抓包测试TTL是否生效</h3><pre><code class="lang-bash">tcpdump -i wan -w /tmp/target.pcap</code></pre><pre><code class="lang-bash">scp -O root@192.168.1.1:/tmp/target.pcap .</code></pre>
]]></content:encoded>
<slash:comments>0</slash:comments>
<comments>https://356799.xyz/archives/18/#comments</comments>
<wfw:commentRss>https://356799.xyz/feed/</wfw:commentRss>
</item>
<item>
<title>接入EdgeOne</title>
<link>https://356799.xyz/archives/15/</link>
<guid>https://356799.xyz/archives/15/</guid>
<pubDate>Mon, 28 Jul 2025 15:11:57 +0000</pubDate>
<dc:creator>beiming</dc:creator>
<description><![CDATA[接入EdgeOne 测试2025-07-28 23:11:52]]></description>
<content:encoded xml:lang="zh-CN"><![CDATA[
<p>接入EdgeOne 测试<br>2025-07-28 23:11:52</p>
]]></content:encoded>
<slash:comments>0</slash:comments>
<comments>https://356799.xyz/archives/15/#comments</comments>
<wfw:commentRss>https://356799.xyz/feed/</wfw:commentRss>
</item>
<item>
<title>他日卧龙终得雨,今朝放鹤且冲天。</title>
<link>https://356799.xyz/archives/14/</link>
<guid>https://356799.xyz/archives/14/</guid>
<pubDate>Wed, 12 Mar 2025 11:53:00 +0000</pubDate>
<dc:creator>beiming</dc:creator>
<description><![CDATA[他日卧龙终得雨,今朝放鹤且冲天。]]></description>
<content:encoded xml:lang="zh-CN"><![CDATA[
<p>他日卧龙终得雨,今朝放鹤且冲天。</p>
]]></content:encoded>
<slash:comments>0</slash:comments>
<comments>https://356799.xyz/archives/14/#comments</comments>
<wfw:commentRss>https://356799.xyz/feed/</wfw:commentRss>
</item>
<item>
<title>乾坤未定，你我皆是黑马。</title>
<link>https://356799.xyz/archives/13/</link>
<guid>https://356799.xyz/archives/13/</guid>
<pubDate>Sat, 15 Feb 2025 02:04:48 +0000</pubDate>
<dc:creator>beiming</dc:creator>
<description><![CDATA[乾坤未定，你我皆是黑马。]]></description>
<slash:comments>0</slash:comments>
<comments>https://356799.xyz/archives/13/#comments</comments>
<wfw:commentRss>https://356799.xyz/feed/</wfw:commentRss>
</item>
<item>
<title>菜就多练</title>
<link>https://356799.xyz/archives/9/</link>
<guid>https://356799.xyz/archives/9/</guid>
<pubDate>Mon, 02 Dec 2024 11:12:00 +0000</pubDate>
<dc:creator>beiming</dc:creator>
<description><![CDATA[菜就多练]]></description>
<content:encoded xml:lang="zh-CN"><![CDATA[
<p><img src="https://oss.beiming.tk/typecho-image/f9553cb35921521783356b8d242df391_6436136975036689490.png" alt=" " title=" "></p>
]]></content:encoded>
<slash:comments>0</slash:comments>
<comments>https://356799.xyz/archives/9/#comments</comments>
<wfw:commentRss>https://356799.xyz/feed/</wfw:commentRss>
</item>
<item>
<title>不要妄自菲薄！</title>
<link>https://356799.xyz/archives/8/</link>
<guid>https://356799.xyz/archives/8/</guid>
<pubDate>Wed, 13 Nov 2024 14:55:00 +0000</pubDate>
<dc:creator>beiming</dc:creator>
<description><![CDATA[不要妄自菲薄！]]></description>
<slash:comments>0</slash:comments>
<comments>https://356799.xyz/archives/8/#comments</comments>
<wfw:commentRss>https://356799.xyz/feed/</wfw:commentRss>
</item>
</channel>
</rss>