<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:media="http://search.yahoo.com/mrss/" version="2.0"><channel><title>阿狸鹿丫</title><link>https://blog.aliluya.com</link><atom:link href="https://blog.aliluya.com/rss.xml" rel="self" type="application/rss+xml"/><description>Aliluya Blog</description><generator>Halo v2.22.14</generator><language>zh-cn</language><image><url>https://blog.aliluya.com/upload/logo.png</url><title>阿狸鹿丫</title><link>https://blog.aliluya.com</link></image><lastBuildDate>Sat, 7 Mar 2026 20:25:45 GMT</lastBuildDate><item><title><![CDATA[飞牛、群晖 两个NAS共用一个后备电源（UPS）]]></title><link>https://blog.aliluya.com/archives/c8szEI4x</link><description><![CDATA[<img src="https://blog.aliluya.com/plugins/feed/assets/telemetry.gif?title=%E9%A3%9E%E7%89%9B%E3%80%81%E7%BE%A4%E6%99%96%20%E4%B8%A4%E4%B8%AANAS%E5%85%B1%E7%94%A8%E4%B8%80%E4%B8%AA%E5%90%8E%E5%A4%87%E7%94%B5%E6%BA%90%EF%BC%88UPS%EF%BC%89&amp;url=/archives/c8szEI4x" width="1" height="1" alt="" style="opacity:0;">
<p style=""></p>
<p style="">最近新增了一台飞牛 NAS，加上我之前的那台群晖，现在我拥有了两台NAS，但是却只有一个 UPS，而且 UPS 仅有一个 USB 接口。接下来就记录一下如何实现两台NAS公用一个UPS！</p>
<hr>
<h3 style="" id="%E4%B8%80%E3%80%81%E5%AE%9E%E7%8E%B0%E5%8E%9F%E7%90%86">一、实现原理</h3>
<p style="">我们要实现的是让群晖 NAS 和飞牛 NAS 共用同一台 UPS，并在断电时同时通知到两台设备。</p>
<p style="">核心思路仍然是基于网络 UPS。虽然飞牛 NAS 没有提供图形化界面来配置网络 UPS，但它其实内置了 UPS 服务端（NUT）。</p>
<p style="">因此，我们让飞牛直接连接 UPS，再让群晖以客户端模式通过网络连接飞牛的 UPS 服务。</p>
<hr>
<h3 style="" id="%E4%BA%8C%E3%80%81%E6%93%8D%E4%BD%9C%E6%AD%A5%E9%AA%A4">二、操作步骤</h3>
<h4 style="" id="1.-%E7%89%A9%E7%90%86%E8%BF%9E%E6%8E%A5%E4%B8%8E%E5%9F%BA%E7%A1%80%E8%AE%BE%E7%BD%AE">1. 物理连接与基础设置</h4>
<p style="">首先，将 UPS 的 USB 接口连接到飞牛 NAS上：</p>
<p style="">​<img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Fimg.xuxueli.cn%2Fx%2Ff6d20e1a5e596ec54572805e0ffc3e78.webp&amp;size=m" alt="ad321" width="100%" height="100%" style="display: inline-block">​</p>
<p style="">​<img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Fimg.xuxueli.cn%2Fx%2Fb548800ac14ac04ce039314519286566.webp&amp;size=m" alt="image" width="100%" height="100%" style="display: inline-block">​</p>
<p style="">​<img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Fimg.xuxueli.cn%2Fx%2F8f1fdaf61f8e52c4fd502bca914835ed.webp&amp;size=m" alt="image" width="100%" height="100%" style="display: inline-block">​</p>
<p style="">接着，进入飞牛 NAS 控制面板，开启 SSH 登录功能：</p>
<p style="">​<img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Fimg.xuxueli.cn%2Fx%2Fb78d3b3c8e22cfb036bc6707bd0068ee.webp&amp;size=m" alt="image" width="100%" height="100%" style="display: inline-block">​</p>
<p style="">使用终端（如 PowerShell 或 Terminal）通过 SSH 登录飞牛 NAS：</p>
<p style="">登录后，获取 root 权限：</p>
<pre><code>sudo -i
</code></pre>
<p style="">​<img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Fimg.xuxueli.cn%2Fx%2F5eda88c1f21d9242407e82c48b294f04.webp&amp;size=m" alt="image" width="100%" height="100%" style="display: inline-block">​</p>
<hr>
<h4 style="" id="2.-%E4%BF%AE%E6%94%B9-nut-%E9%85%8D%E7%BD%AE%E6%96%87%E4%BB%B6">2. 修改 NUT 配置文件</h4>
<p style="">飞牛 NAS 使用的是 NUT（Network UPS Tools）驱动，但默认服务名是一串数字，我们需要将其改为 ups​，以便群晖识别。</p>
<h5 style="" id="2.1-%E4%BF%AE%E6%94%B9-ups.conf%E2%80%8B">2.1 修改 ups.conf​</h5>
<p style="">执行以下命令编辑配置文件：</p>
<pre><code>vim /etc/nut/ups.conf</code></pre>
<p style="">往下拉，找到 [ ]​ 中的数字改为 ups​：</p>
<p style="">按键盘【insert】​进入编辑模式，把[ ]​里面的数字改成ups​。</p>
<p style="">修该玩之后点【Esc】​退出编辑模式，输入：:wq​ 保存并退出。</p>
<p style="">​<img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Fimg.xuxueli.cn%2Fx%2Fa3e1b9bac7f2d448f5aff4479d298ab7.webp&amp;size=m" alt="image" width="100%" height="100%" style="display: inline-block">​</p>
<h5 style="" id="2.2-%E4%BF%AE%E6%94%B9-upsmon.conf%E2%80%8B">2.2 修改 upsmon.conf​</h5>
<p style="">继续修改监控配置文件：</p>
<pre><code>vim /etc/nut/upsmon.conf</code></pre>
<p style="">同样将数字标识改为 ups​：</p>
<p style="">​<img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Fimg.xuxueli.cn%2Fx%2F12ffbffea6beadf855ba76f8beffa97b.webp&amp;size=m" alt="image" width="100%" height="100%" style="display: inline-block">​</p>
<h5 style="" id="2.3-%E4%BF%AE%E6%94%B9-upsd.conf%E2%80%8B">2.3 修改 upsd.conf​</h5>
<p style="">最后修改 upsd 服务配置，允许网络访问：</p>
<pre><code>vim /etc/nut/upsd.conf
</code></pre>
<p style="">将 LISTEN 127.0.0.1​ 改为 LISTEN 0.0.0.0​：</p>
<p style="">​<img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Fimg.xuxueli.cn%2Fx%2Fe0b791f5600ea07ce9ab54bdfdc4e7e2.webp&amp;size=m" alt="image" width="100%" height="100%" style="display: inline-block">​</p>
<h5 style="" id="2.4-%E9%87%8D%E5%90%AF">2.4 重启</h5>
<p style="">完成上述修改后，重启使配置生效。</p>
<p style="">​<img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Fimg.xuxueli.cn%2Fx%2F40853e977dc417031f831dc95c339f79.webp&amp;size=m" alt="image" width="100%" height="100%" style="display: inline-block">​</p>
<hr>
<h4 style="" id="3.-%E9%85%8D%E7%BD%AE%E7%BE%A4%E6%99%96-nas">3. 配置群晖 NAS</h4>
<p style="">现在进入群晖 NAS 的「控制面板」→「硬件和电源」→「不断电系统」。</p>
<p style="">勾选「启用 UPS支持」，UPS 类型选择「Synology 不断电系统服务器」，服务器地址填写飞牛 NAS 的 IP，如下图所示：</p>
<p style="">​<img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Fimg.xuxueli.cn%2Fx%2F1039e63c93b45c25eaa5ce50d425dabb.webp&amp;size=m" alt="image" width="100%" height="100%" style="display: inline-block">​</p>
<p style="">保存设置后，群晖就会成功识别到来自飞牛 NAS 的网络 UPS：</p>
<p style="">​<img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Fimg.xuxueli.cn%2Fx%2F76dc94f631d5545e99933b3e2d97991d.webp&amp;size=m" alt="image" width="100%" height="100%" style="display: inline-block">​</p>
<hr>
<h3 style="" id="%E4%B8%89%E3%80%81%E5%8A%9F%E8%83%BD%E6%B5%8B%E8%AF%95">三、功能测试</h3>
<p style="">现在我们来模拟断电，拔掉 UPS 电源，检查两台设备是否都能收到通知：</p>
<ul>
 <li>
  <p style="">飞牛 NAS 通知：
   <br>
   ​<img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Fimg.xuxueli.cn%2Fx%2F48f959acdb6a13fe4731e7a378e35619.webp&amp;size=m" alt="image" width="100%" height="100%" style="display: inline-block">​</p>
 </li>
 <li>
  <p style="">群晖 NAS 通知：
   <br>
   ​<img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Fimg.xuxueli.cn%2Fx%2Feb95678795d04cf8d0fff42ea6b07872.webp&amp;size=m" alt="image" width="100%" height="100%" style="display: inline-block">​</p>
 </li>
</ul>
<p style="">等待约10分钟后，两台设备均顺利完成安全关机。</p>
<hr>
<h3 style="" id="%E5%9B%9B%E3%80%81%E6%80%BB%E7%BB%93">四、总结</h3>
<p style="">通过以上配置，我们成功实现了让飞牛 NAS 作为 UPS 服务器、群晖 NAS 作为客户端，共享同一台 UPS 断电通知的功能。如果你也拥有多台 NAS 却只有一个 UPS，不妨试试这个方案！</p>
<p style="">如果你在配置过程中遇到问题，欢迎在评论区留言交流！</p>
<p style="">我是阿狸鹿丫，一个业余爱瞎折腾的数码软件爱好者，技术小白。</p>
<p style="">​<img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Fblog.aliluya.com%2Fupload%2Fthe-end.webp&amp;size=m" alt="the-end.webp" width="100%" height="100%" style="display: inline-block">​</p>]]></description><guid isPermaLink="false">/archives/c8szEI4x</guid><dc:creator>阿狸鹿丫</dc:creator><enclosure url="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FxkYGrK.webp&amp;size=m" type="image/jpeg" length="0"/><category>NAS</category><category>教程</category><category>学习</category><category>分享</category><pubDate>Wed, 24 Sep 2025 04:30:00 GMT</pubDate></item><item><title><![CDATA[新装备 飞牛 fnOS NAS 组装：轻松构建个人私有云]]></title><link>https://blog.aliluya.com/archives/scmNvEGm</link><description><![CDATA[<img src="https://blog.aliluya.com/plugins/feed/assets/telemetry.gif?title=%E6%96%B0%E8%A3%85%E5%A4%87%20%E9%A3%9E%E7%89%9B%20fnOS%20NAS%20%E7%BB%84%E8%A3%85%EF%BC%9A%E8%BD%BB%E6%9D%BE%E6%9E%84%E5%BB%BA%E4%B8%AA%E4%BA%BA%E7%A7%81%E6%9C%89%E4%BA%91&amp;url=/archives/scmNvEGm" width="1" height="1" alt="" style="opacity:0;">
<blockquote>
 <p style="">如何用闲置硬件搭配新兴国产系统，打造高效便捷的家庭数据中心。</p>
</blockquote>
<p style="">​<img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Fimg.xuxueli.cn%2Fa%2Fd11f44f19d7e27e44f9d27b05ae7ec2a.webp&amp;size=m" alt="image" width="100%" height="100%" style="display: inline-block">​</p>
<p style="">前段时间群晖Docker经常卡顿，让我太难受了，估计就是硬件配置跟不上了。</p>
<p style="">最近国产NAS系统飞牛fnOS引起了我的注意，作为一款免费且兼容x86硬件的NAS系统，它宣称能够让我们用闲置硬件轻松搭建个人私有云。</p>
<p style="">我决定亲自用就设备尝试了一下，将手头的闲置硬件组装成一台NAS并安装fnOS系统。经过一番实践，决定重新组装一台性能比较合适我的来做我的新的主力NAS。</p>
<p style="">​<img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Fimg.xuxueli.cn%2Fx%2F088a04f41adb3f23cd3d8283ceb26a4b.webp&amp;size=m" alt="image" width="100%" height="100%" style="display: inline-block">​</p>
<h2 style="" id="%E7%A1%AC%E4%BB%B6%E9%80%89%E6%8B%A9%E4%B8%8E%E7%BB%84%E8%A3%85">硬件选择与组装</h2>
<p style="">我选择的硬件配置相当灵活，fnOS对硬件要求很友好。</p>
<p style="">核心配置清单：</p>
<ul>
 <li>
  <p style="">CPU：12代 Intel i3 12300T 处理器（4核8线程 睿频4.2GHZ 35W低功耗 UHD730核显）</p>
  <p style="">​<img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Fimg.xuxueli.cn%2Fx%2F6decc68a42d4cdf8c02aa6af20d3af58.webp&amp;size=m" alt="image" width="100%" height="100%" style="display: inline-block">​</p>
 </li>
 <li>
  <p style="">主板：铭瑄 B760 ITX 挑战者 DDR5（2.5G+1G双网口 双M.2 四个SATA口）</p>
  <p style="">​<img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Fimg.xuxueli.cn%2Fx%2F51d1f379c23a06f85e7bdb1d7ff407c6.webp&amp;size=m" alt="image" width="100%" height="100%" style="display: inline-block">​</p>
 </li>
 <li>
  <p style="">内存：金百达 星刃 DDR5 16Gx2 32G 内存（电压1.4V 频率 6800MHZ）</p>
  <p style="">​<img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Fimg.xuxueli.cn%2Fx%2F9dbf99c3f822b24e11af403e8ff21a28.webp&amp;size=m" alt="image" width="100%" height="100%" style="display: inline-block">​</p>
 </li>
 <li>
  <p style="">系统盘：240GB SSD 固态硬盘 （用于安装fnOS系统）</p>
  <p style="">​<img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Fimg.xuxueli.cn%2Fx%2F64d32d14f83692cab817113c01517049.webp&amp;size=m" alt="image" width="100%" height="100%" style="display: inline-block">​</p>
 </li>
 <li>
  <p style="">数据盘：致钛 Ti600 1TBx2 M.2 SSD固态（组RAID1 用于存储重要数据）</p>
 </li>
 <li>
  <p style="">​<img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Fimg.xuxueli.cn%2Fx%2F2dfd7b56367d317173a5d84a994e2223.webp&amp;size=m" alt="image" width="100%" height="100%" style="display: inline-block">​</p>
 </li>
 <li>
  <p style="">电源：电竞艾派 FSX 500W 全模组电源（稳定供电）</p>
  <p style="">​<img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Fimg.xuxueli.cn%2Fx%2F0143116e0a524d330a8181dda16359de.webp&amp;size=m" alt="image" width="100%" height="100%" style="display: inline-block">​</p>
 </li>
 <li>
  <p style="">机箱：乔思伯 N2 （NAS专用机箱）</p>
  <p style="">​<img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Fimg.xuxueli.cn%2Fx%2F4f982a23a98c9f94cc1e21542465b1e2.webp&amp;size=m" alt="image" width="100%" height="100%" style="display: inline-block">​</p>
  <p style=""></p>
 </li>
</ul>
<p style="">组装过程与普通PC无异，这里就不赘述了。我将SSD作为系统盘，两块M.2 SSD固态计划配置为RAID 1模式，提供数据冗余保护。</p>
<h2 style="" id="%E5%88%B6%E4%BD%9C%E5%AE%89%E8%A3%85%E5%BC%95%E5%AF%BC%E7%9B%98">制作安装引导盘</h2>
<ol>
 <li>
  <p style="">从飞牛官网下载最新的fnOS ISO镜像文件。【<a href="https://fnnas.com/download?key=fnos">飞牛fnOS官网</a>】</p>
  <p style="">​<img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Fimg.xuxueli.cn%2Fx%2Fdff5535609f1e6837894ece86d073365.webp&amp;size=m" alt="image" width="100%" height="100%" style="display: inline-block">​</p>
 </li>
 <li>
  <p style="">使用Rufus工具将一个8GB以上的U盘制作成引导盘：选择下载好的镜像，点击开始，等待进度条显示"准备就绪"即可。</p>
  <p style="">​<img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Fimg.xuxueli.cn%2Fx%2F2d43e13bd951790fcab466f7fd090e40.webp&amp;size=m" alt="image" width="100%" height="100%" style="display: inline-block">​</p>
 </li>
</ol>
<h2 style="" id="%E5%AE%89%E8%A3%85fnos%E7%B3%BB%E7%BB%9F">安装fnOS系统</h2>
<p style="">安装非常简单，我没有拍照记录下来，但是基本都是下一步下一步就搞掂了！！</p>
<ol>
 <li>
  <p style="">将制作好的引导盘插入NAS主机，开机进入BIOS设置U盘为首选启动项。</p>
 </li>
 <li>
  <p style="">选择"Graphical Install"（图形化安装流程）进入安装界面。</p>
 </li>
 <li>
  <p style="">选择要安装系统的硬盘（我选择了240GB的SSD）。</p>
 </li>
 <li>
  <p style="">设置系统分区大小：这里我直接设置200G。</p>
 </li>
 <li>
  <p style="">确认格式化系统盘（注意：此操作会删除盘上所有数据）。</p>
 </li>
 <li>
  <p style="">设置网络：我选择了DHCP自动获取IP地址。</p>
 </li>
 <li>
  <p style="">完成安装后重启系统，拔出引导盘。</p>
 </li>
</ol>
<p style="">按照我这个配置，整个过程大约花了5分钟，超级快~~比安装某些传统NAS系统要简单快捷。</p>
<p style="">之前我在旧的电脑上安装估计是配置不行，也只花了10几分钟左右！</p>
<h2 style="" id="%E7%B3%BB%E7%BB%9F%E5%88%9D%E5%A7%8B%E5%8C%96%E8%AE%BE%E7%BD%AE">系统初始化设置</h2>
<p style="">最后安装完之后会显示出你的飞牛 fnOS 的IP地址，是：5666结尾的！！</p>
<ol>
 <li>
  <p style="">在浏览器中输入NAS的IP地址，进入fnOS管理界面。</p>
 </li>
 <li>
  <p style="">设置设备名称：支持数字、英文及短横线（-），不能以短横线开头或结尾。</p>
 </li>
 <li>
  <p style="">创建管理员账号：fnOS支持创建多个管理员，首位管理员为超级管理员且不能删除。</p>
 </li>
 <li>
  <p style="">创建存储空间：这是NAS的核心功能。我将两块1TB SSD配置为RAID 1模式（Btrfs文件系统），提供了数据冗余保护。</p>
  <p style="">​<img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Fimg.xuxueli.cn%2Fx%2Fb5ce767b0fb433518c1525f0d6e4e817.webp&amp;size=m" alt="image" width="100%" height="100%" style="display: inline-block">​</p>
 </li>
</ol>
<h2 style="" id="fnos%E5%88%9D%E4%BD%93%E9%AA%8C%E4%B8%8E%E6%A0%B8%E5%BF%83%E5%8A%9F%E8%83%BD">fnOS初体验与核心功能</h2>
<h3 style="" id="1.-%E7%AE%80%E6%B4%81%E7%9A%84%E7%95%8C%E9%9D%A2%E8%AE%BE%E8%AE%A1">1. 简洁的界面设计</h3>
<p style="">fnOS的界面简洁清晰，设置选项分类明确，对新手非常友好。虽然是国产系统，但整体设计风格现代化，操作流畅。</p>
<h3 style="" id="2.-%E6%96%87%E4%BB%B6%E5%85%B1%E4%BA%AB%E4%B8%8E%E7%AE%A1%E7%90%86">2. 文件共享与管理</h3>
<p style="">fnOS支持SMB、WebDAV、FTP、NFS等多种文件共享协议。我设置了SMB共享，在Windows资源管理器中可以直接访问NAS上的文件，传输速度稳定在100MB/s左右（千兆网络环境下）。</p>
<h3 style="" id="3.-%E8%BF%9C%E7%A8%8B%E8%AE%BF%E9%97%AE%E5%8A%9F%E8%83%BD">3. 远程访问功能</h3>
<p style="">fnOS提供了FN Connect远程访问功能，类似群晖的QuickConnect。注册账号后，即使没有公网IP，也能通过外网访问NAS。不过免费版可能限速，对速度有要求的用户可能需要考虑高级会员或DDNS方案。</p>
<h3 style="" id="4.-%E5%BA%94%E7%94%A8%E7%94%9F%E6%80%81">4. 应用生态</h3>
<p style="">fnOS的应用商店目前还比较简陋，官方应用主要有飞牛影视和飞牛相册。不过系统内置了Docker支持，这意味着可以通过Docker安装各种第三方应用，如Jellyfin、Nextcloud等，大大扩展了系统功能。</p>
<h4 style="" id="fnos-%E7%9A%84%E4%B8%BB%E8%A6%81%E5%BA%94%E7%94%A8%E5%92%8C%E6%94%AF%E6%8C%81%E6%96%B9%E5%BC%8F">fnOS 的主要应用和支持方式</h4>
<div style="overflow-x: auto; overflow-y: hidden;">
 <table style="width: 897px">
  <colgroup>
   <col style="width: 189px">
   <col style="width: 324px">
   <col style="width: 384px">
  </colgroup>
  <tbody>
   <tr style="height: 60px;">
    <th colspan="1" rowspan="1" colwidth="189">
     <p style="">功能类别</p>
    </th>
    <th colspan="1" rowspan="1" colwidth="324">
     <p style="">支持情况</p>
    </th>
    <th colspan="1" rowspan="1" colwidth="384">
     <p style="">说明</p>
    </th>
   </tr>
   <tr style="height: 60px;">
    <td colspan="1" rowspan="1" colwidth="189">
     <p style="">文件共享</p>
    </td>
    <td colspan="1" rowspan="1" colwidth="324">
     <p style="">SMB、WebDAV、FTP、NFS</p>
    </td>
    <td colspan="1" rowspan="1" colwidth="384">
     <p style="">缺乏iSCSI和AFP支持</p>
    </td>
   </tr>
   <tr style="height: 60px;">
    <td colspan="1" rowspan="1" colwidth="189">
     <p style="">远程访问</p>
    </td>
    <td colspan="1" rowspan="1" colwidth="324">
     <p style="">FN Connect (免费可能限速)、DDNS</p>
    </td>
    <td colspan="1" rowspan="1" colwidth="384">
     <p style="">类似群晖的QuickConnect</p>
    </td>
   </tr>
   <tr style="height: 60px;">
    <td colspan="1" rowspan="1" colwidth="189">
     <p style="">媒体服务</p>
    </td>
    <td colspan="1" rowspan="1" colwidth="324">
     <p style="">飞牛影视 (刮削功能不错)、Docker</p>
    </td>
    <td colspan="1" rowspan="1" colwidth="384">
     <p style="">影音体验是其强调的功能之一</p>
    </td>
   </tr>
   <tr style="height: 60px;">
    <td colspan="1" rowspan="1" colwidth="189">
     <p style="">备份与同步</p>
    </td>
    <td colspan="1" rowspan="1" colwidth="324">
     <p style="">基础备份功能</p>
    </td>
    <td colspan="1" rowspan="1" colwidth="384">
     <p style="">与一些云盘的同步可能不够完善</p>
    </td>
   </tr>
   <tr style="height: 60px;">
    <td colspan="1" rowspan="1" colwidth="189">
     <p style="">虚拟化</p>
    </td>
    <td colspan="1" rowspan="1" colwidth="324">
     <p style="">Docker容器支持、虚拟机功能</p>
    </td>
    <td colspan="1" rowspan="1" colwidth="384">
     <p style="">已支持虚拟机功能</p>
    </td>
   </tr>
   <tr style="height: 60px;">
    <td colspan="1" rowspan="1" colwidth="189">
     <p style="">移动端应用</p>
    </td>
    <td colspan="1" rowspan="1" colwidth="324">
     <p style="">提供移动端及电视端应用</p>
    </td>
    <td colspan="1" rowspan="1" colwidth="384">
     <p style="">方便家庭用户使用</p>
    </td>
   </tr>
  </tbody>
 </table>
</div>
<h3 style="" id="5.-%E5%BD%B1%E9%9F%B3%E4%BD%93%E9%AA%8C">5. 影音体验</h3>
<p style="">飞牛影视是fnOS的主打功能之一。我将其指向存储电影的视频文件夹后，系统自动刮削影片信息，生成美观的海报墙。播放体验整体不错，但注意到有用户报告某些格式（如.wmv）可能无法播放，且AAC音频可能无法转码只能源码播放。</p>
<h2 style="" id="%E5%AE%89%E5%85%A8%E8%AE%BE%E7%BD%AE">安全设置</h2>
<p style="">由于NAS设备通常存储重要数据，安全设置必不可少：</p>
<ol>
 <li>
  <p style="">启用防火墙功能</p>
 </li>
 <li>
  <p style="">开启强制HTTPS连接</p>
 </li>
 <li>
  <p style="">关闭不使用的文件共享协议（如NFS）</p>
 </li>
 <li>
  <p style="">定期更新系统（fnOS更新频率似乎较高）</p>
 </li>
</ol>
<h2 style="" id="%E4%BD%BF%E7%94%A8%E7%BB%8F%E9%AA%8C%E4%B8%8E%E6%8A%80%E5%B7%A7">使用经验与技巧</h2>
<ol>
 <li>
  <p style="">开启SSH访问：fnOS默认未开启SSH，需要在设置中手动开启，并可以进一步配置root登录。</p>
 </li>
 <li>
  <p style="">替换软件源：如果你在海外，可能需要将系统自带的国内源替换为官方源。</p>
 </li>
 <li>
  <p style="">硬件驱动：fnOS基于Debian，硬件兼容性较好，但某些特定硬件可能需要额外驱动。</p>
 </li>
 <li>
  <p style="">数据备份：重要数据一定要有多重备份，不要完全依赖单台NAS设备。</p>
 </li>
</ol>
<h2 style="" id="%E6%80%BB%E7%BB%93">总结</h2>
<p style="">飞牛fnOS作为一个新兴的国产NAS系统，给我的印象是简单易用、适合入门。它可能还没有达到"拳打群晖、脚踢威联通"的水平，但对于想要尝试NAS搭建的新手用户，或者拥有闲置硬件想要利用起来的用户，fnOS是一个值得尝试的选择。</p>
<p style="">它的安装过程简单，基础功能齐全，特别是影音体验方面做得不错。通过Docker支持，可以扩展出更多高级功能。不过，如果是对数据安全和企业级功能有更高要求的用户，可能还需要等待系统的进一步发展和完善。</p>
<p style="">总的来说，这次fnOS NAS组装之旅是成功的。我用不高的成本搭建了一台功能完善的个人私有云，满足了家庭数据存储和媒体播放的需求。如果你也想尝试DIY NAS，飞牛fnOS值得考虑。</p>
<p style="">我是阿狸鹿丫，一个业余爱瞎折腾的数码软件爱好者，技术小白。</p>
<p style="">​<img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Fblog.aliluya.com%2Fupload%2Fthe-end.webp&amp;size=m" alt="the-end.webp" width="100%" height="100%" style="display: inline-block">​</p>]]></description><guid isPermaLink="false">/archives/scmNvEGm</guid><dc:creator>阿狸鹿丫</dc:creator><enclosure url="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FwqbetG.webp&amp;size=m" type="image/jpeg" length="0"/><category>NAS</category><category>服务器</category><category>分享</category><pubDate>Mon, 22 Sep 2025 15:03:07 GMT</pubDate></item><item><title><![CDATA[铭凡 UM880 Plus 迷你主机使用体验：小体积大能量，办公娱乐两相宜]]></title><link>https://blog.aliluya.com/archives/A5Ej4aqz</link><description><![CDATA[<img src="https://blog.aliluya.com/plugins/feed/assets/telemetry.gif?title=%E9%93%AD%E5%87%A1%20UM880%20Plus%20%E8%BF%B7%E4%BD%A0%E4%B8%BB%E6%9C%BA%E4%BD%BF%E7%94%A8%E4%BD%93%E9%AA%8C%EF%BC%9A%E5%B0%8F%E4%BD%93%E7%A7%AF%E5%A4%A7%E8%83%BD%E9%87%8F%EF%BC%8C%E5%8A%9E%E5%85%AC%E5%A8%B1%E4%B9%90%E4%B8%A4%E7%9B%B8%E5%AE%9C&amp;url=/archives/A5Ej4aqz" width="1" height="1" alt="" style="opacity:0;">
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FhlT06T.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">作为一款主打高性能与便携性的迷你主机，<strong>【铭凡 UM880 Plus】</strong>自发布以来便备受关注。</p>
<p style="">最近我也入手了这款产品，经过一段时间的实际使用，今天将从开箱体验、性能表现、使用场景以及优缺点分析等方面，分享我的真实感受。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F1E8C00.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h1 style="" id="%E4%B8%80%E3%80%81%E6%9E%81%E7%AE%80%E7%BE%8E%E5%AD%A6%EF%BC%8C%E7%BB%86%E8%8A%82%E6%BB%A1%E5%88%86"><strong>一、极简美学，细节满分</strong></h1>
<p style="">【UM880 Plus】的包装设计延续了铭凡一贯的简洁风格，主机本体仅比手掌稍大（130×126.5×50.4mm），重量不足0.7kg，真正诠释了“迷你”二字。</p>
<p style="">机身采用银白色磨砂材质，触感细腻且防指纹，正面配备2个USB-A 10Gbps接口和音频插孔，背面接口更为丰富，包括HDMI 2.1、DP 1.4、全功能USB4 Type-C（支持100W PD供电）、OCuLink接口以及2.5G网口等，轻松满足多屏办公和外接设备需求。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F7RQtC9.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h1 style="" id="%E4%BA%8C%E3%80%81%E6%80%A7%E8%83%BD%E5%AE%9E%E6%B5%8B%EF%BC%9A%E9%94%90%E9%BE%997%E5%8A%A0%E6%8C%81%EF%BC%8C%E6%B5%81%E7%95%85%E5%BA%94%E5%AF%B9%E5%A4%9A%E5%9C%BA%E6%99%AF"><strong>二、性能实测：锐龙7加持，流畅应对多场景</strong></h1>
<p style=""><strong>核心配置</strong>：</p>
<p style="">- <strong>处理器</strong>：AMD锐龙7 8845HS（8核16线程，加速频率5.1GHz）</p>
<p style="">- <strong>核显</strong>：Radeon 780M（性能接近入门独显）</p>
<p style="">- <strong>内存/存储</strong>：双DDR5 5600MHz插槽（最高支持96GB）+双M.2 PCIe 4.0 SSD盘位</p>
<p style="">- <strong>散热</strong>：相变散热介质+双风扇设计，散热效率提升25%。</p>
<p style=""><strong>实际体验</strong>：</p>
<p style="">- <strong>办公与创作</strong>：多任务处理（PS+PR+浏览器多标签）毫无压力，编译代码或运行虚拟机时响应迅速。</p>
<p style="">- <strong>娱乐表现</strong>：Radeon 780M核显可流畅运行《英雄联盟》《CS:GO》等游戏（1080P中高画质60帧+），甚至还能玩《黑神话悟空》中低画质在40-50帧左右。搭配OCuLink接口外接显卡坞后，甚至能挑战《赛博朋克2077》（中画质2K分辨率55帧）。</p>
<p style="">- <strong>静音与温控</strong>：日常使用噪音低于35dB，高负载下机身温度稳定在80℃左右，散热表现远超预期。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F8j6P3o.webp&amp;size=m" width="991px" height="Infinitypx" style="display: inline-block"></p>
<h1 style="" id="%E4%B8%89%E3%80%81%E4%BA%AE%E7%82%B9%E5%8A%9F%E8%83%BD%EF%BC%9A%E6%89%A9%E5%B1%95%E6%80%A7%E4%B8%8E%E7%94%9F%E6%80%81%E5%85%BC%E5%AE%B9"><strong>三、亮点功能：扩展性与生态兼容</strong></h1>
<p style="">1. <strong>OCuLink接口</strong>：支持外接独立显卡坞，瞬间提升图形性能，满足AI运算、3A游戏等需求。</p>
<p style="">2. <strong>多屏输出</strong>：通过HDMI 2.1+DP 1.4+USB-C三接口，轻松实现四屏异显，适合金融、设计等专业场景。</p>
<p style="">3. <strong>存储自由</strong>：双M.2插槽设计，可扩展至8TB存储空间，搭配DDR5内存升级，未来三年无需担心性能瓶颈。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2Fqz9uzf.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h1 style="" id="%E5%9B%9B%E3%80%81%E4%BD%BF%E7%94%A8%E7%97%9B%E7%82%B9%E4%B8%8E%E6%94%B9%E8%BF%9B%E5%BB%BA%E8%AE%AE"><strong>四、使用痛点与改进建议</strong></h1>
<p style="">- <strong>适配器体积</strong>：标配电源适配器略大，若能改用氮化镓技术会更便携。</p>
<p style="">- <strong>无线网络</strong>：仅支持WiFi 6E，未配备WiFi 7（需搭配雷电拓展坞实现），对极速网络需求用户稍有遗憾。</p>
<p style="">- <strong>接口布局</strong>：背面USB-A接口为480Mbps速率，高速设备需优先使用前置接口。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FoU88jJ.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h1 style="" id="%E4%BA%94%E3%80%81%E6%80%BB%E7%BB%93%EF%BC%9A%E8%B0%81%E9%80%82%E5%90%88%E9%80%89%E6%8B%A9um880-plus%EF%BC%9F"><strong>五、总结：谁适合选择UM880 Plus？</strong></h1>
<p style="">- <strong>办公族</strong>：追求桌面整洁、多任务高效处理的用户。</p>
<p style="">- <strong>学生党</strong>：宿舍空间有限，需要兼顾学习、娱乐和轻度创作的需求。</p>
<p style="">- <strong>极客玩家</strong>：热衷DIY扩展（如外接显卡、搭建NAS）的技术爱好者。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2Fwt6wLq.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h2 style="" id="%E6%80%A7%E4%BB%B7%E6%AF%94%EF%BC%9A%E5%9B%BD%E8%A1%A5%E5%90%8E2847%E5%85%83%EF%BC%8832gb%2B1tb%E7%89%88%E6%9C%AC%EF%BC%89%E7%9A%84%E5%AE%9A%E4%BB%B7%EF%BC%8C%E5%AF%B9%E6%AF%94%E5%90%8C%E9%85%8D%E7%BD%AE%E7%AC%94%E8%AE%B0%E6%9C%AC%E6%88%96%E5%8F%B0%E5%BC%8F%E6%9C%BA%EF%BC%8C%E4%BC%98%E5%8A%BF%E6%98%BE%E8%91%97%E3%80%82"><strong>性价比</strong>：国补后2847元（32GB+1TB版本）的定价，对比同配置笔记本或台式机，优势显著。</h2>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F1n8TH5.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h2 style="" id="%E8%B4%AD%E4%B9%B0%E5%BB%BA%E8%AE%AE%EF%BC%9A%E8%8B%A5%E9%9C%80%E6%9B%B4%E5%BC%BA%E7%9A%84ai%E7%AE%97%E5%8A%9B%EF%BC%8C%E5%8F%AF%E8%80%83%E8%99%91%E6%90%AD%E8%BD%BDnpu%E5%8D%95%E5%85%83%E7%9A%84um890%E7%B3%BB%E5%88%97%EF%BC%9B%E8%8B%A5%E9%A2%84%E7%AE%97%E6%9C%89%E9%99%90%EF%BC%8Cum870-plus%EF%BC%88%E6%80%A7%E8%83%BD%E6%8D%9F%E5%A4%B1%E4%B8%8D%E5%88%B010%25%EF%BC%89%E4%B9%9F%E6%98%AF%E9%AB%98%E6%80%A7%E4%BB%B7%E6%AF%94%E4%B9%8B%E9%80%89%E3%80%82"><strong>购买建议</strong>：若需更强的AI算力，可考虑搭载NPU单元的UM890系列；若预算有限，UM870 Plus（性能损失不到10%）也是高性价比之选。</h2>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=%2Fupload%2F%E5%BE%AE%E4%BF%A1%E6%88%AA%E5%9B%BE_202520528134852.png&amp;size=m" alt="微信截图_202520528134852.png" width="100%" height="100%" style="display: inline-block"></p>
<h1 style="" id="%E7%BB%93%E8%AF%AD">结语</h1>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F0uyWSN.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">如果你厌倦了笨重的传统主机，又不想牺牲性能，铭凡UM880 Plus或许是2025年最值得入手的迷你电脑之一。</p>
<p style="">小巧机身蕴藏澎湃动力，这才是未来办公桌的终极答案。</p>
<p style="">我是阿狸鹿丫，一个业余爱瞎折腾的数码软件爱好者，技术小白。</p>
<p style="text-align: center; ; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=%2Fupload%2Fthe-end.webp&amp;size=m" alt="the-end.webp" width="25%" height="auto" style="display: inline-block"></p>]]></description><guid isPermaLink="false">/archives/A5Ej4aqz</guid><dc:creator>阿狸鹿丫</dc:creator><enclosure url="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FddjPje.webp&amp;size=m" type="image/jpeg" length="0"/><category>杂谈</category><category>分享</category><pubDate>Fri, 30 May 2025 06:35:00 GMT</pubDate></item><item><title><![CDATA[群晖部署 MT Photos 一款简单、好用的照片管理系统]]></title><link>https://blog.aliluya.com/archives/JyJa1ttM</link><description><![CDATA[<img src="https://blog.aliluya.com/plugins/feed/assets/telemetry.gif?title=%E7%BE%A4%E6%99%96%E9%83%A8%E7%BD%B2%20MT%20Photos%20%E4%B8%80%E6%AC%BE%E7%AE%80%E5%8D%95%E3%80%81%E5%A5%BD%E7%94%A8%E7%9A%84%E7%85%A7%E7%89%87%E7%AE%A1%E7%90%86%E7%B3%BB%E7%BB%9F&amp;url=/archives/JyJa1ttM" width="1" height="1" alt="" style="opacity:0;">
<h1 style="text-align: center; ; " id="mt-photos%E6%98%AF%E4%BB%80%E4%B9%88">MT Photos是什么</h1>
<p style="line-height: 24px"><strong>MT Photos</strong>是一款为NAS用户量身打造的照片管理系统。</p>
<p style="line-height: 24px">通过AI技术，自动将您的照片整理、分类，包括但不限于时间、地点、人物、照片类型。</p>
<p style="line-height: 24px">您可以在任何支持<strong>Docker</strong>的系统中运行它。</p>
<p style="line-height: 24px">如果您的操作系统是<strong>Windows</strong>，也可以直接运行Windows服务端程序。</p>
<p style="line-height: 24px"><a rel="noopener" href="https://mtmt.tech/static/9b92840e73fee17e37c64cb1a2e5096a/56dca/preview1.jpg" target="_blank" class="gatsby-resp-image-link"><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Fmtmt.tech%2Fstatic%2F9b92840e73fee17e37c64cb1a2e5096a%2Fc60e9%2Fpreview1.jpg&amp;size=m" alt="功能预览" title="" width="800px" height="452px" style="display: inline-block"></a></p>
<h2 style="" id="%E5%8A%9F%E8%83%BD%E7%89%B9%E6%80%A7">功能特性</h2>
<ul>
 <li>
  <p style="">以<span fontsize="" color="rgb(220, 38, 38)" style="color: rgb(220, 38, 38)"><strong>时间线</strong></span>的方式，展示您的照片</p>
 </li>
 <li>
  <p style="">以<span fontsize="" color="rgb(234, 179, 8)" style="color: rgb(234, 179, 8)"><strong>文件夹</strong></span>的方式，展示您的照片</p>
 </li>
 <li>
  <p style="">通过<span fontsize="" color="rgb(22, 163, 74)" style="color: rgb(22, 163, 74)"><strong>图库</strong></span>您可以方便地将现有存储中的照片，提供给用户</p>
 </li>
 <li>
  <p style="">手机App<span fontsize="" color="rgb(59, 130, 246)" style="color: rgb(59, 130, 246)"><strong>备份照片、视频支持丰富的命名规则</strong></span>（按年月分文件夹、按拍摄日期命名文件等）；</p>
 </li>
 <li>
  <p style="">通过人脸识别，自动生成<span fontsize="" color="rgb(107, 33, 168)" style="color: rgb(107, 33, 168)"><strong>人物相册</strong></span></p>
 </li>
 <li>
  <p style="">基于照片的GPS信息，自动生成<span fontsize="" color="rgb(219, 39, 119)" style="color: rgb(219, 39, 119)"><strong>地点相册</strong></span></p>
 </li>
 <li>
  <p style="">支持<strong>Live Photos</strong>的无损备份、下载、显示</p>
 </li>
 <li>
  <p style="">按<span fontsize="" color="rgb(234, 88, 12)" style="color: rgb(234, 88, 12)"><strong>文件类型</strong></span>，自动分类屏幕截图、自拍照、视频、动态照片</p>
 </li>
 <li>
  <p style="">基于照片内容，自动生成<span fontsize="" color="rgb(30, 58, 138)" style="color: rgb(30, 58, 138)"><strong>场景相册</strong></span></p>
 </li>
 <li>
  <p style="">通过<span fontsize="" color="rgb(74, 222, 128)" style="color: rgb(74, 222, 128)"><strong>影集分享</strong></span>，您可以方便地将照片分享给家人</p>
 </li>
</ul>
<h2 style="" id="%E7%B3%BB%E7%BB%9F%E6%9E%B6%E6%9E%84">系统架构</h2>
<p style="line-height: 24px"><a rel="noopener" href="https://mtmt.tech/static/2584fef4264fefdf6955248824334dc1/332ff/sys_arch.png" target="_blank" class="gatsby-resp-image-link"><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Fmtmt.tech%2Fstatic%2F2584fef4264fefdf6955248824334dc1%2Fa331c%2Fsys_arch.png&amp;size=m" alt="系统架构图" title="" width="800px" height="652px" style="display: inline-block"></a></p>
<h1 style="" id="docker%E9%83%A8%E7%BD%B2">Docker部署</h1>
<p style=""><strong>查看安装教程视频</strong><span style="font-size: 16px; color: rgb(204, 204, 204)">： </span></p>
<hyperlink-card target="_blank" href="https://www.bilibili.com/video/BV199XQYGEkw" theme="regular" style="margin-top: 0.75em; margin-bottom: 0;"><a href="https://www.bilibili.com/video/BV199XQYGEkw" target="_blank">https://www.bilibili.com/video/BV199XQYGEkw</a></hyperlink-card>
<h2 style="" id="%E5%88%9B%E5%BB%BA%E9%A1%B9%E7%9B%AE">创建项目</h2>
<p style="line-height: 24px">按以下步骤，打开创建项目界面</p>
<ul>
 <li>
  <p style="line-height: 24px">打开Container Manager；如果没有安装，请先在套件中心安装；</p>
 </li>
 <li>
  <p style="line-height: 24px">点击左侧【项目】之后点【新增】。</p>
 </li>
 <li>
  <p style="line-height: 24px">填写项目名称，设置好路径。然后复制下面的代码填进去</p>
  <p style="line-height: 24px">根据实际情况修改，创建【docker-compose】。</p>
 </li>
</ul>
<p style="line-height: 24px"><a href="https://lsky.xuxueli.cn/VaDHj9.webp"><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FVaDHj9.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></a></p>
<p style="line-height: 24px"><strong>Docker-Compose 配置代码：</strong></p>
<pre><code>version: "3"

services:
  mtphotos:
    image: registry.cn-hangzhou.aliyuncs.com/mtphotos/mt-photos:latest
    container_name: mtphotos
    restart: always
    ports:
      - 8063:8063
    volumes:
      - /volume1/docker/mt_photos:/config
      - /volume1/photo/mt_upload:/upload
      - /volume1/photo/自定义文件夹:/自定义文件夹  #提示：这一行是其他需要映射给容器的文件夹，如果没有可以删除这一行
    environment:
      - TZ=Asia/Shanghai
    depends_on:
      - mtphotos_ai
      - mtphotos_face_api
  mtphotos_ai:
    image: registry.cn-hangzhou.aliyuncs.com/mtphotos/mt-photos-ai:onnx-latest
    container_name: mtphotos_ai
    restart: always
    ports:
      - 8060:8060
    environment:
      - API_AUTH_KEY=mt_photos_ai_extra
  mtphotos_face_api:
    image: crpi-gcuyquw9co62xzjn.cn-guangzhou.personal.cr.aliyuncs.com/devfox101/mt-photos-insightface-unofficial:latest
    container_name: mtphotos_face_api
    restart: always
    ports:
      - 8066:8066
    environment:
      - API_AUTH_KEY=mt_photos_ai_extra</code></pre>
<p style="">设置好之后一直点下一步，拉取镜像等待创建完成。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2Fy1ys9L.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">拉取镜像大概需要几分钟到十几分钟不止，取决于你自己的网速。</p>
<p style="">到最后看到到【Exit Code 0】时，说明镜像已经拉取完成了。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FFEXwtQ.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">这边可以看到容器也已经创建并在运行中了</p>
<p style="">安装完成后，可在容器中看到3个容器：mtphotos、mtphotos_ai、mtphotos_face_api；</p>
<p style="line-height: 24px">点击容器名称，可以查看、修改相关配置。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FFWBqBa.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">现在证明已经搭建完毕，可以正常访问了！</p>
<h2 style="" id="%E8%AE%BE%E7%BD%AE-mt-photos">设置 MT Photos</h2>
<p style="">接下来我们打开浏览器新的标签页，输入对应的nas的ip地址加端口号进项访问。</p>
<p style="">比如：我群晖NAS的IP是 【192.168.31.4】。</p>
<p style="">就可以使用【http://192.168.31.4:8063】来访问网页。</p>
<p style=""><a href="https://lsky.xuxueli.cn/vavi5u.webp"><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2Fvavi5u.webp&amp;size=m" width="991px" height="Infinitypx" style="display: inline-block"></a></p>
<p style="">大功告成！打开后我们可以看到初始化设置界面。</p>
<p style="">选着好语言，点击下一步进入设置账号密码。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FFz1XAh.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">设置好账号密码之后就可以点击下一步进入设置图库。</p>
<p style="">把你自己映射好的图库添加到对应的账号就可以了。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FFrCDjx.webp&amp;size=m" width="962px" height="496px" style="display: inline-block"></p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2Fw3vFLY.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">设置完之后登录就可以正常使用了！</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F65Cb7S.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h1 style="" id="%E7%BB%93%E8%AF%AD">结语</h1>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FhKlsaA.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style=""><span style="font-size: 16.002px">通过群晖搭建MT Photos系统，不仅让散落的照片有了智能化的归宿，更让珍贵记忆获得了数字时代的温度。</span></p>
<p style=""><span style="font-size: 16.002px">这款轻量级工具如同一位贴心的影像管家，将技术门槛化作无形，留给我们更多与家人重温美好瞬间的可能。</span></p>
<p style=""><span style="font-size: 16.002px">期待您在新搭建的照片库里，重新发现那些被时光镀上柔光的笑脸，也欢迎持续关注后续的影像管理技巧分享。</span></p>
<p style=""><span style="font-size: 16.002px">毕竟，生活的诗意从不需要复杂的代码，只需要一个安放温情的角落。📸</span></p>
<p style="">我是阿狸鹿丫，一个业余爱瞎折腾的数码软件爱好者，技术小白。</p>
<p style="text-align: center; ; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=%2Fupload%2Fthe-end.webp&amp;size=m" alt="the-end.webp" width="25%" height="auto" style="display: inline-block"></p>
<p style=""></p>
<p style=""></p>
<p style=""></p>
<p style=""></p>
<p style=""></p>
<p style=""></p>]]></description><guid isPermaLink="false">/archives/JyJa1ttM</guid><dc:creator>阿狸鹿丫</dc:creator><enclosure url="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2Fyhj2t5.webp&amp;size=m" type="image/jpeg" length="0"/><category>NAS</category><category>教程</category><pubDate>Wed, 28 May 2025 04:17:17 GMT</pubDate></item><item><title><![CDATA[群晖部署自动更新SSL证书的工具 - Certd]]></title><link>https://blog.aliluya.com/archives/1742987184356</link><description><![CDATA[<img src="https://blog.aliluya.com/plugins/feed/assets/telemetry.gif?title=%E7%BE%A4%E6%99%96%E9%83%A8%E7%BD%B2%E8%87%AA%E5%8A%A8%E6%9B%B4%E6%96%B0SSL%E8%AF%81%E4%B9%A6%E7%9A%84%E5%B7%A5%E5%85%B7%20-%20Certd&amp;url=/archives/1742987184356" width="1" height="1" alt="" style="opacity:0;">
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FepLBzB.webp&amp;size=m" width="848px" height="282px" style="display: inline-block"></p>
<h1 style="" id="certd%E2%80%8B"><strong>Certd</strong><a href="https://certd.docmirror.cn/guide/#certd" class="header-anchor"><strong>​</strong></a></h1>
<p style="line-height: 28px">Certd 是一款开源、免费、全自动申请和部署更新SSL证书的工具。
 <br>
 后缀d取自linux守护进程的命名风格，意为证书守护进程。</p>
<p style="line-height: 28px">关键字：证书自动申请、证书自动更新、证书自动续期、证书自动续签、证书管理工具</p>
<h2 style="" id="%E4%B8%80%E3%80%81%E7%89%B9%E6%80%A7%E2%80%8B"><strong>一、特性</strong><a href="https://certd.docmirror.cn/guide/#%E4%B8%80%E3%80%81%E7%89%B9%E6%80%A7" class="header-anchor"><strong>​</strong></a></h2>
<p style="line-height: 28px">本项目不仅支持证书申请过程自动化，还可以自动化部署更新证书，让你的证书永不过期。</p>
<ul>
 <li>
  <p style="">全自动申请证书（支持所有注册商注册的域名）</p>
 </li>
 <li>
  <p style="">全自动部署更新证书（目前支持部署到主机、部署到阿里云、腾讯云等，目前已支持60+部署插件）</p>
 </li>
 <li>
  <p style="">支持通配符域名/泛域名，支持多个域名打到一个证书上</p>
 </li>
 <li>
  <p style="">邮件通知</p>
 </li>
 <li>
  <p style="">私有化部署，保障数据安全</p>
 </li>
 <li>
  <p style="">支持SQLite、Postgresql、MySQL数据库</p>
 </li>
</ul>
<h2 style="" id="%E4%BA%8C%E3%80%81%E4%B8%80%E4%BA%9B%E8%AF%B4%E6%98%8E%E2%80%8B"><strong>二、一些说明</strong><a href="https://certd.docmirror.cn/guide/#%E4%BA%8C%E3%80%81%E4%B8%80%E4%BA%9B%E8%AF%B4%E6%98%8E" class="header-anchor"><strong>​</strong></a></h2>
<ul>
 <li>
  <p style="">本项目申请证书过程遵循acme协议</p>
 </li>
 <li>
  <p style="">需要验证域名所有权，一般有两种方式</p>
  <ul>
   <li>
    <p style="">http-01： 在网站根目录下放置一份txt文件</p>
   </li>
   <li>
    <p style="">dns-01： 需要给域名添加txt解析记录，通配符域名只能用这种方式（本项目仅支持dns-01）</p>
   </li>
  </ul>
 </li>
 <li>
  <p style="">证书续期：</p>
  <ul>
   <li>
    <p style="">实际上没有办法不改变证书文件本身情况下直接续期或者续签。</p>
   </li>
   <li>
    <p style="">我们所说的续期，其实就是按照全套流程重新申请一份新证书，然后重新部署上去。</p>
   </li>
  </ul>
 </li>
 <li>
  <p style="">免费证书过期时间90天，以后可能还会缩短，所以自动化部署必不可少</p>
 </li>
 <li>
  <p style="">设置每天自动运行，当证书过期前35天，会自动重新申请证书并部署</p>
 </li>
</ul>
<h2 style="" id="%E4%B8%89%E3%80%81%E8%AF%81%E4%B9%A6%E9%A2%81%E5%8F%91%E6%9C%BA%E6%9E%84%E5%AF%B9%E6%AF%94%E2%80%8B"><strong>三、证书颁发机构对比</strong><a href="https://certd.docmirror.cn/guide/#%E4%B8%89%E3%80%81%E8%AF%81%E4%B9%A6%E9%A2%81%E5%8F%91%E6%9C%BA%E6%9E%84%E5%AF%B9%E6%AF%94" class="header-anchor"><strong>​</strong></a></h2>
<ul>
 <li>
  <p style="">Let's Encrypt：申请最简单。</p>
 </li>
 <li>
  <p style="">Google: 大厂光环，兼容性好，首次需要翻墙获取EAB。</p>
 </li>
 <li>
  <p style="">ZeroSSL： 需要EAB，获取EAB无需翻墙。</p>
 </li>
</ul>
<h2 style="" id="demo%E5%9C%A8%E7%BA%BF%E4%BD%93%E9%AA%8C%E2%80%8B"><strong>demo在线体验</strong><a href="https://certd.docmirror.cn/guide/start.html#%E4%B8%80%E3%80%81-demo%E5%9C%A8%E7%BA%BF%E4%BD%93%E9%AA%8C" class="header-anchor"><strong>​</strong></a></h2>
<p style="line-height: 28px">官方DEMO地址，自助注册后体验</p>
<p style="line-height: 28px"><a rel="noreferrer" href="https://certd.handsfree.work/" target="_blank"><strong><u>https://certd.handsfree.work/</u></strong></a></p>
<blockquote>
 <p style="line-height: 28px">注意数据将不定期清理，不定期停止定时任务，生产使用请自行部署
  <br>
  包含敏感信息，务必自己本地部署进行生产使用</p>
</blockquote>
<h1 style="" id="%E9%83%A8%E7%BD%B2%E6%96%B9%E5%BC%8F">部署方式</h1>
<ol>
 <li>
  <p style=""><a href="https://certd.docmirror.cn/guide/install/baota/"><strong><u>宝塔面板方式部署</u></strong></a></p>
 </li>
 <li>
  <p style=""><a href="https://certd.docmirror.cn/guide/install/1panel/"><strong><u>1Panel面板方式部署</u></strong></a></p>
 </li>
 <li>
  <p style=""><a href="https://certd.docmirror.cn/guide/install/docker/"><strong><u>Docker方式部署</u></strong></a></p>
 </li>
 <li>
  <p style=""><a href="https://certd.docmirror.cn/guide/install/source/"><strong><u>源码方式部署</u></strong></a></p>
 </li>
</ol>
<h1 style="" id="%E7%BE%A4%E6%99%96%E9%83%A8%E7%BD%B2%E6%95%99%E7%A8%8B">群晖部署教程</h1>
<p style="">新建文件夹 【certd】</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FqBi5aJ.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style=""><strong>打开Container Manager</strong><a href="https://certd.docmirror.cn/guide/use/synology/#_1-%E6%89%93%E5%BC%80container-manager" class="header-anchor"><strong>​</strong></a></p>
<p style="line-height: 28px"><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F1k5Btp.webp&amp;size=m" width="848px" height="518px" style="display: inline-block"></p>
<p style="">新建项目【certd】复制以下代码创建 <span style="font-size: 16px; color: rgb(60, 60, 67)">docker-compose </span></p>
<pre><code>version: '3.3' # 兼容旧版docker-compose
services:
  certd:
    # 镜像    #  ↓↓↓↓↓ ---- 镜像版本号，建议改成固定版本号,例如：certd:1.29.0
    image: registry.cn-shenzhen.aliyuncs.com/handsfree/certd:latest
    container_name: certd # 容器名
    restart: unless-stopped # 自动重启
    volumes:
      #   ↓↓↓↓↓ ---------------------- 数据库以及证书存储路径,默认存在宿主机的/data/certd/目录下，【您需要定时备份此目录，以保障数据容灾】
      #   只要修改冒号前面的，冒号后面的/app/data不要动
      - /volume1/docker/certd:/app/data
    ports: # 端口映射
      #  ↓↓↓↓ ----------------------- 如果端口有冲突，可以修改第一个7001为其他不冲突的端口号，第二个7001不要动
      - "7001:7001"
      #  ↓↓↓↓ ----------------------- https端口，可以根据实际情况，是否暴露该端口
      - "7002:7002"
    #↓↓↓↓ --------------------------- 如果出现getaddrinfo ENOTFOUND错误，可以尝试设置dns
#    dns:
#      - 223.5.5.5      # 阿里云公共dns
#      - 223.6.6.6
#       # ↓↓↓↓ --------------------- 如果你服务器在腾讯云，可以用这个替换上面阿里云的公共dns
#      - 119.29.29.29  # 腾讯云公共dns
#      - 182.254.116.116
#       # ↓↓↓↓ -------------------- 如果你服务器部署在国外，可以用这个替换上面阿里云的公共dns
#      - 8.8.8.8       # 谷歌公共dns
#      - 8.8.4.4
#    extra_hosts:
#        # ↓↓↓↓ ------------------- 这里可以配置自定义hosts，外网域名可以指向本地局域网ip地址
#      - "localdomain.com:192.168.1.3"
#        #         ↓↓↓↓ ----------- 直接使用主机的网络，如果网络问题实在找不到原因，可以尝试打开此参数
#    network_mode: host
    labels:
      com.centurylinklabs.watchtower.enable: "true"
#    ↓↓↓↓ ------------------------- 启用ipv6网络，还需要把下面networks的注释放开
#    networks:
#      - ip6net
    environment:
#     设置环境变量即可自定义certd配置
#     配置项见： packages/ui/certd-server/src/config/config.default.ts
#     配置规则： certd_ + 配置项, 点号用_代替
#     #↓↓↓↓ ---------- 如果忘记管理员密码，可以设置为true，重启之后，管理员密码将改成123456，然后请及时修改回false
      - certd_system_resetAdminPasswd=false

#     默认使用sqlite文件数据库，如果需要使用其他数据库，请设置以下环境变量
#     注意： 选定使用一种数据库之后，不支持更换数据库。
#     数据库迁移方法：1、使用新数据库重新部署一套，然后将旧数据同步过去，注意flyway_history表的数据不要同步
#     #↓↓↓↓ --------------------- 使用postgresql数据库，需要提前创建数据库
#      - certd_flyway_scriptDir=./db/migration-pg                        # 升级脚本目录
#      - certd_typeorm_dataSource_default_type=postgres                  # 数据库类型
#      - certd_typeorm_dataSource_default_host=localhost                 # 数据库地址
#      - certd_typeorm_dataSource_default_port=5433                      # 数据库端口
#      - certd_typeorm_dataSource_default_username=postgres              # 用户名
#      - certd_typeorm_dataSource_default_password=yourpasswd            # 密码
#      - certd_typeorm_dataSource_default_database=certd                 # 数据库名

#     #↓↓↓↓ ----------- 使用mysql数据库，需要提前创建数据库 charset=utf8mb4, collation=utf8mb4_bin
#      - certd_flyway_scriptDir=./db/migration-mysql                     # 升级脚本目录
#      - certd_typeorm_dataSource_default_type=mysql                     # 数据库类型， 或者 mariadb
#      - certd_typeorm_dataSource_default_host=localhost                 # 数据库地址
#      - certd_typeorm_dataSource_default_port=3306                      # 数据库端口
#      - certd_typeorm_dataSource_default_username=root                  # 用户名
#      - certd_typeorm_dataSource_default_password=yourpasswd            # 密码
#      - certd_typeorm_dataSource_default_database=certd                 # 数据库名

#         ↓↓↓↓ ------------------  自动升级，上面certd的版本号要保持为latest
#  certd-updater:  # 添加 Watchtower 服务
#    image: containrrr/watchtower:latest
#    container_name: certd-updater
#    restart: unless-stopped
#    volumes:
#      - /var/run/docker.sock:/var/run/docker.sock
#    # 配置 自动更新
#    environment:
#      - WATCHTOWER_CLEANUP=true            # 自动清理旧版本容器
#      - WATCHTOWER_INCLUDE_STOPPED=false   # 不更新已停止的容器
#      - WATCHTOWER_LABEL_ENABLE=true       # 根据容器标签进行更新
#      - WATCHTOWER_POLL_INTERVAL=600       # 每 10 分钟检查一次更新


#    ↓↓↓↓ -------------------------- 启用ipv6网络，还需要把上面networks的注释放开
#networks:
#  ip6net:
#    enable_ipv6: true
#    ipam:
#      config:
#        - subnet: 2001:db8::/64</code></pre>
<p style="">按照下图设置好，一直点击下一步。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2Fa8etVx.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">等待镜像拉取完毕，项目构建完成，点击关闭即可。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FNQH5rp.webp&amp;size=m" width="848px" height="Infinitypx" style="display: inline-block"></p>
<h3 style="" id="%E8%AE%BF%E9%97%AE%E6%B5%8B%E8%AF%95%E2%80%8B"><strong>访问测试</strong><a href="https://certd.docmirror.cn/guide/start.html#_2-%E8%AE%BF%E9%97%AE%E6%B5%8B%E8%AF%95" class="header-anchor"><strong>​</strong></a></h3>
<p style="line-height: 28px"><strong>http://your_server_ip:7001
  <br>https://your_server_ip:7002
  <br>默认账号密码：admin/123456</strong>
 <br>
 <code>记得修改密码</code></p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FMnrn6e.webp&amp;size=m" width="848px" height="480px" style="display: inline-block"></p>
<p style="">至于如何设置自动申请和部署证书，更新证书，等我后期出个详细教程！</p>
<h1 style="" id="%E7%BB%93%E8%AF%AD">结语</h1>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FESIozU.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">至此，你已经成功为群晖NAS部署了Certd自动化SSL证书更新工具！从此告别手动续期、过期宕机的烦恼，让HTTPS安全守护时刻在线。无论是个人博客还是企业服务，自动化运维都能为你的网络安全高效护航。</p>
<p style="">如果在实践中遇到问题，欢迎在评论区留言交流。如果本教程对你有所帮助，不妨点赞收藏支持，也欢迎分享给更多NAS爱好者。</p>
<p style="">我是阿狸鹿丫，一个业余爱瞎折腾的数码软件爱好者，技术小白。</p>
<p style="text-align: center; ; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=%2Fupload%2Fthe-end.webp&amp;size=m" alt="the-end.webp" width="25%" height="auto" style="display: inline-block"></p>]]></description><guid isPermaLink="false">/archives/1742987184356</guid><dc:creator>阿狸鹿丫</dc:creator><enclosure url="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FJr8Uqq.webp&amp;size=m" type="image/jpeg" length="0"/><category>NAS</category><category>推荐</category><category>教程</category><pubDate>Thu, 27 Mar 2025 11:42:55 GMT</pubDate></item><item><title><![CDATA[Jellyfin 海报自动刮削 & 硬解码设置]]></title><link>https://blog.aliluya.com/archives/1ikwgvMn</link><description><![CDATA[<img src="https://blog.aliluya.com/plugins/feed/assets/telemetry.gif?title=Jellyfin%20%E6%B5%B7%E6%8A%A5%E8%87%AA%E5%8A%A8%E5%88%AE%E5%89%8A%20%26%20%E7%A1%AC%E8%A7%A3%E7%A0%81%E8%AE%BE%E7%BD%AE&amp;url=/archives/1ikwgvMn" width="1" height="1" alt="" style="opacity:0;">
<div class="html-edited">
 <hao-note class="flat" noicon="haofont hao-icon-dengpao" style="orange">大家好，我是阿狸鹿丫，一个业余爱瞎折腾的数码软件爱好者，技术小白。</hao-note>
</div>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FNmdxeR.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h1 style="" id="%E5%89%8D%E8%A8%80">前言</h1>
<p style="">在打造私人影音库的过程中，除了基本的媒体管理功能，海报自动刮削和硬解码设置是提升用户体验的关键要素。</p>
<p style="">Jellyfin 作为一款功能强大的开源媒体服务器，不仅可以帮助您组织和播放您的媒体内容，还提供了先进的海报刮削和硬解码功能。</p>
<p style="">本文将探讨如何配置 Jellyfin 的海报自动刮削功能和硬解码设置，帮助您进一步提升私人影音库的管理效率和观赏体验。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F0f1zdG.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h1 style="" id="%E6%B5%B7%E6%8A%A5%E5%88%AE%E5%89%8A">海报刮削</h1>
<p style="">首先我们需要下载一个工具<span color="#ea580c" style="color: #ea580c">【</span><span style="font-size: 16.875px; color: #ea580c">tinyMediaManager】</span><span style="font-size: 16.875px; color: rgb(61, 65, 68)">，这是一款影片的信息刮削器。</span></p>
<p style=""><span style="font-size: 16.875px; color: rgb(61, 65, 68)">他可以一次性帮你批量搜索影片封面和相关信息，很方便的帮你管理你的影片库。</span></p>
<blockquote>
 <p style=""><span style="font-size: 16.875px; color: rgb(61, 65, 68)">tinyMediaManager 下载地址：</span><a href="https://www.tinymediamanager.org/">https://www.tinymediamanager.org/</a></p>
</blockquote>
<p style="">进入官网点击【<a href="https://www.tinymediamanager.org/download/">Downloads</a>】，选择自己系统对应版本下载。</p>
<p style="">我这就以macOS为例，点击下载。</p>
<p style="">也可以是用Docke版本镜像：<span fontsize="" color="rgb(126, 34, 206)" style="color: rgb(126, 34, 206)">dzhuang/tinymediamanager</span></p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FAEohZ2.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">下载完，直接安装即可。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FTSq9C2.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">安装完成之后我们打开软件，首次打开需要配置一下，我们直接一直下一步就OK了。</p>
<p style="">之后我们就可以进到软件主界面。</p>
<p style="">然后我们就惦记左下角的此轮图标<span color="#9333ea" style="color: #9333ea">【设置】-【电影】-【媒体库目录】</span>，把NAS上存放影片的文件夹路径添加进来。</p>
<p style=""><span fontsize="" color="rgb(248, 113, 113)" style="color: rgb(248, 113, 113)"><mark data-color="#fef08a" style="background-color: #fef08a; color: inherit">（如何添加NAS文件夹进来，请往下看）</mark></span></p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FiQSmKg.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">NAS文件映射到本地电脑：</p>
<p style="">打开<span color="#2563eb" style="color: #2563eb">【仿达】</span>，选择<span color="#16a34a" style="color: #16a34a">【位置】</span>下的<span color="#9333ea" style="color: #9333ea">【网络】</span>，进入后选择同一网络下的NAS服务器。</p>
<p style=""><span color="#f472b6" style="color: #f472b6">（Windows用户直接输入你的NAS的IP，之后进入后选择你的对应的文件夹右键映射一下盘符就OK了）</span></p>
<p style=""><span color="#f472b6" style="color: #f472b6"><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FBQPW5o.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></span></p>
<p style="">进入之后如果没登录，我们选择右上角的<span color="#ea580c" style="color: #ea580c">【链接身份】</span>，用自己的群晖账号密码登录一下。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F3W2XRK.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">登录完成之后我们就可以在本地电脑可以访问NAS上的文件夹，之后返回<span color="#7e22ce" style="color: #7e22ce">【</span><span style="font-size: 16.875px; color: #7e22ce">tinyMediaManager】</span><span style="font-size: 16.875px; color: rgb(61, 65, 68)">界面。</span></p>
<p style="">点击<span color="#f87171" style="color: #f87171">【设置】</span>右边的<span color="#2563eb" style="color: #2563eb">【+】</span>号，添加NAS上储存影片的文件夹。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FNfZl6o.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">这样就设置好了<span color="#9333ea" style="color: #9333ea">【电影】</span>的媒体目录，电视剧或者其他目录的设置方法一样的，所以就不在一一演示了。</p>
<p style="">接着我们就回到主页选择左上角<span color="#db2777" style="color: #db2777">【更新媒体库】</span>-<span color="#22c55e" style="color: #22c55e">【更新所有媒体库目录】</span>。</p>
<p style="">之后就会自动把刚刚我们设置的文件夹下面的电影添加进来。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FoRv4tb.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">接下来就可以设置影视信息刮削了。</p>
<p style="">下面以<span color="#f87171" style="color: #f87171">【重见天日】</span>为例，可以看到后面显示5个 <span style="font-size: 18px; color: #dc2626">X X X X X</span> 可以说基本上什么信息都没有。</p>
<p style="">点击<span color="#ca8a04" style="color: #ca8a04">【重见天日】</span>右键，选择<span color="#c084fc" style="color: #c084fc">【搜索并刮削选定电影】</span>。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FgmK08l.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">按照下图设置，以及搜索框中输入相关的影视名称点击<span color="#f97316" style="color: #f97316">【搜索】</span>。</p>
<p style="">稍等片刻之后就会在左下角出现所有和这名称相关的影片信息，自己选着对应的影片信息。</p>
<p style="">之后选择后点击右下角<span color="#2563eb" style="color: #2563eb">【确定】</span>即可。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F16xNbZ.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">之后到主界面要等待一会，左下角会显示进度条，进行刮削和下载相关信息。</p>
<p style="">完成后我们就可以看到我们的海报，演员包括其他影片信息都全部展示出来了。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FVIXdvG.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">同时我们回到<span color="#eab308" style="color: #eab308">【jellyfin】</span>里面点击<span color="#c2410c" style="color: #c2410c">【重见天日】</span>也可以看到信息都展示出来了。</p>
<p style="">这样看上去好看多了，整体显得高大上了。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F8kx6q2.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h1 style="" id="%E7%A1%AC%E8%A7%A3%E7%A0%81%E8%AE%BE%E7%BD%AE">硬解码设置</h1>
<p style="">为什么我们需要设置硬解码呢？</p>
<p style="">硬解有几个作用，可以转换成低码率的视频让性能不好的设备进行播放。</p>
<p style="">或者在远程播放的时候让远程设备可以选择低码率，可以节省流量。</p>
<p style="">还有就是软解的情况下，在观看低码率的视频的时候，可以看到群晖的CPU占用一下子飙升很高。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FBM4MOj.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">所以软解会对处理器照成比较大的压力，如果你的处理器性能不够的话可能会照成观看的时候卡顿现象。</p>
<p style="">下面就进行设置教程！</p>
<p style="">进入<span color="#16a34a" style="color: #16a34a">【jellyfin】</span>后台，选择<span color="#2563eb" style="color: #2563eb">【播放】</span>，在<span color="#ea580c" style="color: #ea580c">【硬件加速】</span>那选择<span color="#ef4444" style="color: #ef4444">【Video Acceleration API (VAAPI)】</span>。</p>
<p style=""><span color="#f472b6" style="color: #f472b6">VA-API 设备：/dev/dri/renderD128</span> 这表示调用群辉地层的显卡来进行硬解。</p>
<p style=""><span fontsize="" color="rgb(220, 38, 38)" style="color: rgb(220, 38, 38)">（如何确认你的群晖是否支持或者有没正常识别这显卡，方法往下看）</span></p>
<p style="">启用硬件解码：这多选的建议全部勾选。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FfEXT8j.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style=""><span style="font-size: 18px"><strong>如何确定是否支持 renderD128：</strong></span></p>
<p style=""><span style="font-size: 18px">使用SSH工具</span><span style="font-size: 18px; color: #16a34a">【XTerminal】</span><span style="font-size: 18px">，你们也可以使用自己熟悉的SSH工具。</span></p>
<p style="">进入群晖SSH，命令行进入管理员模式。</p>
<pre><code>sudo -i</code></pre>
<p style="">之后输入管理员密码之后回车，接着输入以下命令检测是否支持或者驱动是否正常。</p>
<pre><code>ls /dev/dri</code></pre>
<p style="">下图所示，显示<span color="#db2777" style="color: #db2777">【card0】</span>和<span color="#f97316" style="color: #f97316">【</span><span style="font-size: 18px; color: #f97316">renderD128</span><span color="#f97316" style="color: #f97316">】</span>就表示驱动正常，能支持硬解的。</p>
<p style="">最后将刚刚设置的保存一下就OK了。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FRpYzin.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h1 style="" id="%E7%BB%93%E8%AF%AD">结语</h1>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FGohpm7.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">海报自动刮削可以为您的媒体库自动获取高质量的封面和海报，使您的媒体内容更加丰富和视觉上引人入胜。</p>
<p style="">而硬解码设置则能够优化视频播放性能，减轻处理器负担，提升播放流畅度。</p>
<p style="">如果您遇到任何问题或有进一步的需求，欢迎随时查阅官方文档或留言一起讨论。祝你在私人影音世界中尽享乐趣！</p>
<p style="">我是阿狸鹿丫，一个业余爱瞎折腾的数码软件爱好者，技术小白。</p>
<p style="text-align: center; ; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=%2Fupload%2Fthe-end.webp&amp;size=m" alt="the-end.webp" width="25%" height="auto" style="display: inline-block"></p>]]></description><guid isPermaLink="false">/archives/1ikwgvMn</guid><dc:creator>阿狸鹿丫</dc:creator><enclosure url="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FxN2Ghh.webp&amp;size=m" type="image/jpeg" length="0"/><category>教程</category><category>分享</category><pubDate>Sat, 7 Sep 2024 16:20:59 GMT</pubDate></item><item><title><![CDATA[群晖 Docker 安装 Jellyfin 打造私人影音库]]></title><link>https://blog.aliluya.com/archives/RFlJHODr</link><description><![CDATA[<img src="https://blog.aliluya.com/plugins/feed/assets/telemetry.gif?title=%E7%BE%A4%E6%99%96%20Docker%20%E5%AE%89%E8%A3%85%20Jellyfin%20%E6%89%93%E9%80%A0%E7%A7%81%E4%BA%BA%E5%BD%B1%E9%9F%B3%E5%BA%93&amp;url=/archives/RFlJHODr" width="1" height="1" alt="" style="opacity:0;">
<div class="html-edited">
 <hao-note class="flat" noicon="haofont hao-icon-dengpao" style="orange">大家好，我是阿狸鹿丫，一个业余爱瞎折腾的数码软件爱好者，技术小白。</hao-note>
</div>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FGohpm7.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h1 style="" id="%E5%89%8D%E8%A8%80">前言</h1>
<p style="">在现代数字化生活中，越来越多的人开始追求个性化和高效的影音管理方式。</p>
<p style=""><span fontsize="" color="rgb(147, 51, 234)" style="color: rgb(147, 51, 234)">群晖 NAS </span>作为一种强大的存储解决方案，提供了丰富的扩展功能，其中 <span fontsize="" color="rgb(96, 165, 250)" style="color: rgb(96, 165, 250)">Docker </span>技术尤为引人注目。</p>
<p style="">通过 <span fontsize="" color="rgb(59, 130, 246)" style="color: rgb(59, 130, 246)">Docker</span>，我们可以在<span fontsize="" color="rgb(249, 115, 22)" style="color: rgb(249, 115, 22)">群晖 NAS</span> 上轻松安装和管理各种应用程序。</p>
<p style="">而 Jellyfin 作为一个开源的媒体服务器软件，为用户提供了一个自定义的影音库解决方案。</p>
<p style="">本文将详细介绍如何在<span fontsize="" color="rgb(34, 197, 94)" style="color: rgb(34, 197, 94)">群晖 NAS</span> 上利用 <span fontsize="" color="rgb(29, 78, 216)" style="color: rgb(29, 78, 216)">Docker</span> 安装 <span fontsize="" color="rgb(126, 34, 206)" style="color: rgb(126, 34, 206)">Jellyfin</span>，以打造一个私人影音库，让您能够随时随地享受高质量的媒体内容，同时确保您的数据和隐私得到全面保护。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2Frk4j1Z.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h1 style="" id="%E5%A5%97%E4%BB%B6%E5%AE%89%E8%A3%85">套件安装</h1>
<p style="">如果想简单一点，可以直接使用群晖【Jellyfin套件】也很不错！</p>
<p style="">添加 矿神套件 https://spk7.imnks.com/</p>
<p style="">添加好之后直接在【套件中心】搜索【Jellyfin媒体服务器】即可。</p>
<p style="">安装完直接输入 IP+8096 访问！</p>
<h1 style="" id="docker-%E9%83%A8%E7%BD%B2%E6%95%99%E7%A8%8B"><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FAHJAVJ.webp&amp;size=m" width="100%" height="100%" style="display: inline-block">Docker 部署教程</h1>
<h2 style="" id="%E5%BB%BA%E7%AB%8B%E6%96%87%E4%BB%B6%E5%A4%B9">建立文件夹</h2>
<p style="">首先进入群晖后台，打开<span fontsize="" color="rgb(202, 138, 4)" style="color: rgb(202, 138, 4)">【File station】</span>，在<span fontsize="" color="rgb(21, 128, 61)" style="color: rgb(21, 128, 61)">【docker】</span>文件夹下创建<span fontsize="" color="rgb(168, 85, 247)" style="color: rgb(168, 85, 247)">【Jellyfin】</span>文件夹。</p>
<p style="">然后在<span fontsize="" color="rgb(126, 34, 206)" style="color: rgb(126, 34, 206)">【Jellyfin】</span>文件夹下继续创建<span fontsize="" color="rgb(219, 39, 119)" style="color: rgb(219, 39, 119)">【cache】</span>和<span fontsize="" color="rgb(244, 114, 182)" style="color: rgb(244, 114, 182)">【config】</span>两个文件夹。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F1m7JNR.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">新建完成之后选择刚刚建好的文件夹<span fontsize="" color="rgb(168, 85, 247)" style="color: rgb(168, 85, 247)">【Jellyfin】</span>，点击右键<span fontsize="" color="rgb(37, 99, 235)" style="color: rgb(37, 99, 235)">【属性】</span>。</p>
<p style="">点击<span fontsize="" color="rgb(202, 138, 4)" style="color: rgb(202, 138, 4)">【权限】</span>之后点<span fontsize="" color="rgb(248, 113, 113)" style="color: rgb(248, 113, 113)">【新增】</span>，在用户或组里选择<span fontsize="" color="rgb(59, 130, 246)" style="color: rgb(59, 130, 246)">【http】</span>。</p>
<p style="">下面的权限吧<span fontsize="" color="rgb(22, 101, 52)" style="color: rgb(22, 101, 52)">【读取】</span>和<span fontsize="" color="rgb(194, 65, 12)" style="color: rgb(194, 65, 12)">【写入】</span>都勾上，完成。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FxeZht4.webp&amp;size=m" width="863px" height="488px" style="display: inline-block"></p>
<p style="">回到<span fontsize="" color="rgb(202, 138, 4)" style="color: rgb(202, 138, 4)">【权限】</span>界面，把左下角的<span fontsize="" color="rgb(37, 99, 235)" style="color: rgb(37, 99, 235)">【应用到这个文件夹、子文件夹及文件】</span>勾上，保存即可。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F9QQdPT.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">之后去你自己储存影片的文件夹点<span fontsize="" color="rgb(234, 88, 12)" style="color: rgb(234, 88, 12)">【属性】</span>。</p>
<p style="">我的是在根目录<span fontsize="" color="rgb(147, 51, 234)" style="color: rgb(147, 51, 234)">【Video】</span>，点<span fontsize="" color="rgb(34, 197, 94)" style="color: rgb(34, 197, 94)">【属性】</span>-<span fontsize="" color="rgb(190, 24, 93)" style="color: rgb(190, 24, 93)">【权限】</span>。</p>
<p style="">添加<span fontsize="" color="rgb(96, 165, 250)" style="color: rgb(96, 165, 250)">【Everyone】</span>的读写权限，最后还要把<span fontsize="" color="rgb(244, 114, 182)" style="color: rgb(244, 114, 182)">【应用到这个文件夹、子文件夹及文件】</span>勾上，保存即可。</p>
<p style=""></p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2Fw5GChP.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h2 style="" id="%E9%83%A8%E7%BD%B2%E9%A1%B9%E7%9B%AE">部署项目</h2>
<p style="">接着打开Docke<span fontsize="" color="rgb(51, 51, 51)" style="color: rgb(51, 51, 51)">容器管理器</span><span fontsize="" color="rgb(37, 99, 235)" style="color: rgb(37, 99, 235)">【Container Manager】</span>。</p>
<p style="">选择<span fontsize="" color="rgb(22, 163, 74)" style="color: rgb(22, 163, 74)">【项目】</span>，之后<span fontsize="" color="rgb(239, 68, 68)" style="color: rgb(239, 68, 68)">【新增】</span>一个项目，通过 <span fontsize="" color="rgb(59, 130, 246)" style="color: rgb(59, 130, 246)">Docke Compose </span>部署<span fontsize="" color="rgb(219, 39, 119)" style="color: rgb(219, 39, 119)">Jellyfin</span>。</p>
<p style=""><span fontsize="" color="rgb(255, 0, 0)" style="color: rgb(255, 0, 0)">（latest版本默认不含核显驱动，如果需要群晖开启核显硬解的请下载latest-legacy版本）</span></p>
<blockquote>
 <p style="">镜像：<span fontsize="" color="rgb(96, 165, 250)" style="color: rgb(96, 165, 250)">nyanmisaka/jellyfin:latest-legacy</span></p>
</blockquote>
<p style=""><strong>Docke Compose：</strong></p>
<pre><code class="language-yaml">version: "3"
services:
  jellyfin:
    image: nyanmisaka/jellyfin:latest-legacy
    container_name: jellyfin
    network_mode: 'host'
    volumes:
      - /volume1/docker/Jellyfin/config:/config
      - /volume1/docker/Jellyfin/cache:/cache
    # 下面是存放影片的目录位置 /volume1/video 
      - type: bind
        source: /volume1/video
        target: /video
        read_only: true
    restart: 'unless-stopped'
    # Optional - alternative address used for autodiscovery
    environment:
      - JELLYFIN_PublishedServerUrl=http://dy.aliluya.com
    # Optional - may be necessary for docker healthcheck to pass if running in host network mode
    extra_hosts:
      - 'host.docker.internal:host-gateway'</code></pre>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F150IKs.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FSUZszd.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2Fl7XfJc.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">完成之后会拉取所需的镜像<span fontsize="" color="rgb(249, 115, 22)" style="color: rgb(249, 115, 22)">【nyanmisaka/jellyfin:latest-legacy】</span>，如果拉取失败可以参考下面这篇文章。</p>
<hyperlink-card target="_blank" href="https://blog.aliluya.com/archives/C8deuht8" theme="regular" style="margin-top: 0.75em; margin-bottom: 0;"><a href="https://blog.aliluya.com/archives/C8deuht8" target="_blank">https://blog.aliluya.com/archives/C8deuht8</a></hyperlink-card>
<p style="">下面我是已经拉取了镜像，所以没有拉取镜像过程显示。</p>
<p style="">构建完成后显示<code> Exit Code: 0 </code> 就表示构建成功了。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FB7oX34.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">接下来在<span fontsize="" color="rgb(194, 65, 12)" style="color: rgb(194, 65, 12)">【项目】</span>里可以看到刚刚我们构建的<span fontsize="" color="rgb(126, 34, 206)" style="color: rgb(126, 34, 206)">【Jellyfin】</span>项目已经成功了。</p>
<p style="">并且容器里的<span fontsize="" color="rgb(22, 163, 74)" style="color: rgb(22, 163, 74)">【Jellyfin】</span>镜像也运行成功了。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2Fo4AAge.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h2 style="" id="jellyfin%E8%AE%BE%E7%BD%AE">Jellyfin设置</h2>
<p style="">到这一步已成功搭建安装完成了<span fontsize="" color="rgb(37, 99, 235)" style="color: rgb(37, 99, 235)">【Jellyfin】</span>。</p>
<p style="">接下来就进入<span fontsize="" color="rgb(248, 113, 113)" style="color: rgb(248, 113, 113)">【Jellyfin】</span>的后台进行详细设置。</p>
<p style="">输入群晖NAS的<span fontsize="" color="rgb(219, 39, 119)" style="color: rgb(219, 39, 119)">【IP】</span>加<span fontsize="" color="rgb(202, 138, 4)" style="color: rgb(202, 138, 4)">【Jellyfin端口8096】</span>进入后台。</p>
<blockquote>
 <p style=""><span fontsize="" color="rgb(126, 34, 206)" style="color: rgb(126, 34, 206)">Jellyfin后台：192.168.X.X:8096</span></p>
</blockquote>
<p style="">设置好系统系统默认语言。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FE9LnT5.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">创建账户，设置好用户名和密码。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FoNx0rJ.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">之后我们就要添加一下我们的<span fontsize="" color="rgb(22, 163, 74)" style="color: rgb(22, 163, 74)">【媒体库】</span>。</p>
<p style="">把我们要存放的电影或者电视剧的文件夹添加进来。</p>
<p style="">内容类型选择<span fontsize="" color="rgb(249, 115, 22)" style="color: rgb(249, 115, 22)">【电影】</span>，显示名称自定义，文件夹就添加我们存放影片的文件夹位置。</p>
<p style="">下载语言设置中文<span fontsize="" color="rgb(220, 38, 38)" style="color: rgb(220, 38, 38)">【Chinese】</span>国家选中国<span fontsize="" color="rgb(248, 113, 113)" style="color: rgb(248, 113, 113)">【People's Republic of china】</span>。</p>
<p style="">下面设置都保存默认，直接点<span fontsize="" color="rgb(96, 165, 250)" style="color: rgb(96, 165, 250)">【确定】</span>。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FmEgNvk.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">刚刚添加了<span fontsize="" color="rgb(22, 163, 74)" style="color: rgb(22, 163, 74)">【电影】</span>的目录，这里我就在添加多一个<span fontsize="" color="rgb(37, 99, 235)" style="color: rgb(37, 99, 235)">【电视剧】</span>的。</p>
<p style="">和刚刚步骤一样，只是电视剧我们选择内容是<span fontsize="" color="rgb(248, 113, 113)" style="color: rgb(248, 113, 113)">【节目】</span>。</p>
<p style="">显示名称我们自定义为<span fontsize="" color="rgb(192, 132, 252)" style="color: rgb(192, 132, 252)">【电视剧】</span>，下面也是默认，点<span fontsize="" color="rgb(251, 146, 60)" style="color: rgb(251, 146, 60)">【确定】</span>。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FSz1NPB.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">现在可以看到我们已经添加了两个分类，需要其他分类的可以自行添加。</p>
<p style="">这里继续点<span fontsize="" color="rgb(251, 146, 60)" style="color: rgb(251, 146, 60)">【下一步】</span>。</p>
<p style="">首选元数据语言，一样设置成中文<span fontsize="" color="rgb(220, 38, 38)" style="color: rgb(220, 38, 38)">【Chinese】</span>国家选中国<span fontsize="" color="rgb(248, 113, 113)" style="color: rgb(248, 113, 113)">【People's Republic of china】</span>。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F5irqae.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">设置远程访问保持默认直接<span fontsize="" color="rgb(107, 33, 168)" style="color: rgb(107, 33, 168)">【下一步】</span>。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FQdyYA5.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">OK，已经完成<span fontsize="" color="rgb(168, 85, 247)" style="color: rgb(168, 85, 247)">Jellyfin</span>的初步设置了。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2Fkr4Xyt.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">接下来，直接登陆刚刚创建的账户。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FPYEHOE.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">登录之后就可以看到本地的影片已经显示出来了。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FZndISC.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FzSh9sK.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h1 style="" id="%E8%BF%9C%E7%A8%8B%E8%A7%82%E7%9C%8B">远程观看</h1>
<p style="">最后如果需要外网访问，直接使用【内网穿透】+【反向代理】就能轻松实现，随时随地观看自己的影音库。</p>
<p style=""><strong>不会设置的可以看看我这两篇文章：</strong></p>
<p style=""><span style="font-size: 20px; color: rgb(219, 39, 119)">内网穿透：</span></p>
<hyperlink-card target="_blank" href="https://blog.aliluya.com/archives/erGlSIEH" theme="regular" style="margin-top: 0.75em; margin-bottom: 0;"><a href="https://blog.aliluya.com/archives/erGlSIEH" target="_blank">https://blog.aliluya.com/archives/erGlSIEH</a></hyperlink-card>
<p style=""><span style="font-size: 20px; color: rgb(22, 163, 74)">反向代理：</span></p>
<hyperlink-card target="_blank" href="https://blog.aliluya.com/archives/GzxQ6QUf" theme="regular" style="margin-top: 0.75em; margin-bottom: 0;"><a href="https://blog.aliluya.com/archives/GzxQ6QUf" target="_blank">https://blog.aliluya.com/archives/GzxQ6QUf</a></hyperlink-card>
<p style="">手机/ipad平板 下载一个 jellyfin app 直接填入域名就能实现远程随时随地观看家里的影视库。</p>
<p style="">Jellyfin App下载：<a href="https://jellyfin.org/downloads" target="_self">https://jellyfin.org/downloads</a></p>
<h2 style="" id="%E6%BC%94%E7%A4%BA%E6%95%88%E6%9E%9C">演示效果</h2>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FLQDgbh.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F5SDiEo.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FuUagL7.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h1 style="" id="%E7%BB%93%E8%AF%AD">结语</h1>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FjpKwlS.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">恭喜您完成了在群晖 <span fontsize="" color="rgb(22, 163, 74)" style="color: rgb(22, 163, 74)">NAS</span> 上通过 <span fontsize="" color="rgb(234, 88, 12)" style="color: rgb(234, 88, 12)">Docker</span> 安装 <span fontsize="" color="rgb(126, 34, 206)" style="color: rgb(126, 34, 206)">Jellyfin</span> 的所有步骤！</p>
<p style="">现在，您已经成功打造了一个功能强大的私人影音库，可以随时随地享受您喜爱的电影、电视剧和音乐。</p>
<p style="">通过这一过程，您不仅学会了如何利用 <span fontsize="" color="rgb(29, 78, 216)" style="color: rgb(29, 78, 216)">Docker</span> 部署和管理应用程序，还掌握了如何通过 <span fontsize="" color="rgb(219, 39, 119)" style="color: rgb(219, 39, 119)">Jellyfin</span> 实现个性化的媒体管理。</p>
<p style="">希望您能够充分利用这个系统，享受高效便捷的数字娱乐体验。</p>
<p style="">如果您遇到任何问题或有进一步的需求，欢迎随时查阅官方文档或留言一起讨论。祝你在私人影音世界中尽享乐趣！</p>
<p style="">我是阿狸鹿丫，一个业余爱瞎折腾的数码软件爱好者，技术小白。</p>
<p style="text-align: center; ; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=%2Fupload%2Fthe-end.webp&amp;size=m" alt="the-end.webp" width="25%" height="auto" style="display: inline-block"></p>
<p style=""></p>
<p style=""></p>
<p style=""></p>
<p style=""></p>
<p style=""></p>]]></description><guid isPermaLink="false">/archives/RFlJHODr</guid><dc:creator>阿狸鹿丫</dc:creator><enclosure url="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FYFfj2P.webp&amp;size=m" type="image/jpeg" length="0"/><category>NAS</category><category>教程</category><category>分享</category><pubDate>Thu, 5 Sep 2024 14:18:25 GMT</pubDate></item><item><title><![CDATA[MacBook Pro 无法调亮度 MacOS 系统降级教程]]></title><link>https://blog.aliluya.com/archives/g5KkNtET</link><description><![CDATA[<img src="https://blog.aliluya.com/plugins/feed/assets/telemetry.gif?title=MacBook%20Pro%20%E6%97%A0%E6%B3%95%E8%B0%83%E4%BA%AE%E5%BA%A6%20MacOS%20%E7%B3%BB%E7%BB%9F%E9%99%8D%E7%BA%A7%E6%95%99%E7%A8%8B&amp;url=/archives/g5KkNtET" width="1" height="1" alt="" style="opacity:0;">
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2Fj2hEbJ.webp&amp;size=m" alt="66d143930cbf6.webp" width="863px" height="538px" style="display: inline-block"></p>
<h1 style="" id="%E5%89%8D%E8%A8%80">前言</h1>
<p style="">今天在刷抖音的时候，突然刷到了一个在华强北维修MacBook屏幕的视频，感觉老板人挺实在。</p>
<p style="">然后我想起了之前屏幕被我女儿一屁股KO的 MacBook Pro 13-inch, 2017, Four Thunderbolt 3 Ports。</p>
<p style="">一直闲置在柜子里，就拿出来找老板报了个价格，维修费用个人感觉挺实惠。</p>
<p style="">心想放着也是没用，卖也不值钱，还不如修改放车上当做备用机子。</p>
<p style="">然后我就直接叫个同城跑腿直接送过去维修屏幕。</p>
<p style="">维修完拿回来之后，维修师傅告知我无法通过 Touch Bar 触控调节屏幕亮度。</p>
<p style="">但是我印象中之前是一直可以正常使用的。</p>
<p style="">这样导致我晚上使用这台笔记本的时候屏幕直接亮瞎了眼，之后在网上找了一圈，发现有和我同病相怜的。</p>
<p style="">他们的原因都是系统升级之后不兼容导致无法调节亮度，我记得之前外接显示器用过一段时间，升级过系统。</p>
<p style="">所以我就觉得把系统恢复到我之前适配的版本，试试看是否是这个问题，下面记录一下整个降级过程。</p>
<p style=""><span style="font-size: 20px"><strong>无法调节亮度展示：</strong></span></p>
<p style="text-align: center; ; ">
 <video src="https://pddgo-img.s3.us-east-005.backblazeb2.com/36_1725094725.mp4" width="100%" height="auto" controls="true"></video>
</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2Fp4H5cS.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h1 style="" id="%E5%87%86%E5%A4%87%E5%B7%A5%E4%BD%9C">准备工作</h1>
<ol>
 <li>
  <p style=""><span fontsize="" color="rgb(19, 19, 19)" style="color: rgb(19, 19, 19)">在开始之前，请确保备份您的重要数据，以防在降级过程中发生数据丢失。</span></p>
 </li>
 <li>
  <p style=""><span fontsize="" color="rgb(19, 19, 19)" style="color: rgb(19, 19, 19)">下载您想要降级到的 macOS 版本的安装程序。</span></p>
 </li>
 <li>
  <p style=""><span fontsize="" color="rgb(19, 19, 19)" style="color: rgb(19, 19, 19)">准备</span><span fontsize="" color="rgb(25, 27, 31)" style="color: rgb(25, 27, 31)">一个大于16G的U盘，需要格式化为Macos日志格式，制作Macos引导安装器。</span></p>
 </li>
</ol>
<h1 style="" id="%E5%A4%87%E4%BB%BD%E6%95%B0%E6%8D%AE">备份数据</h1>
<p style="">准备一个U盘或者移动硬盘，<span fontsize="" color="rgb(25, 27, 31)" style="color: rgb(25, 27, 31)">将MacBook通过</span><span fontsize="" color="rgb(21, 128, 61)" style="color: rgb(21, 128, 61)">【时间机器】</span><span fontsize="" color="rgb(25, 27, 31)" style="color: rgb(25, 27, 31)">进行备份保存现有文件和软件。</span></p>
<blockquote>
 <p style="">（如果要无损降级的话，就需要备份现有的软件和资料。如果不需要直接重新安装系统就不需要备份了。）</p>
</blockquote>
<p style="">将硬盘或者U盘插入MacBook，在<span fontsize="" color="rgb(153, 27, 27)" style="color: rgb(153, 27, 27)">【启动台】</span>的<span fontsize="" color="rgb(248, 113, 113)" style="color: rgb(248, 113, 113)">【系统应用】</span>中打开<span fontsize="" color="rgb(22, 163, 74)" style="color: rgb(22, 163, 74)">【时间机器】</span>。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FoMczr7.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">进入后选拔组<span fontsize="" color="rgb(190, 24, 93)" style="color: rgb(190, 24, 93)">【添加备份磁盘】</span>。</p>
<p style="">把磁盘添加进去进行备份就可以了。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FMFhHsF.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h1 style="" id="%E4%B8%8B%E8%BD%BD%E7%B3%BB%E7%BB%9F">下载系统</h1>
<p style="">首先进入官网下载所需的系统版本<span fontsize="" color="rgb(219, 39, 119)" style="color: rgb(219, 39, 119)">（点击下面官网下载）</span></p>
<hyperlink-card target="_blank" href="https://support.apple.com/zh-cn/102662" theme="small" style="margin-top: 0.75em; margin-bottom: 0;"><a href="https://support.apple.com/zh-cn/102662" target="_blank">https://support.apple.com/zh-cn/102662</a></hyperlink-card>
<p style="">进入之后我们选择<span fontsize="" color="rgb(37, 99, 235)" style="color: rgb(37, 99, 235)">【使用 App Store】</span>。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FhFQLj6.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">然后就会跳转到选择系统版本界面，这里大家可以按照自己需要恢复的版本进行选择。</p>
<p style="">我自己就是需要恢复到<span fontsize="" color="rgb(126, 34, 206)" style="color: rgb(126, 34, 206)">【Catalina 10.15】</span>这个版本，所以就直接点击这个版本就OK了。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F45WBqC.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">点击<span fontsize="" color="rgb(249, 115, 22)" style="color: rgb(249, 115, 22)">【Catalina 10.15】</span>之后就会自动打开<span fontsize="" color="rgb(147, 51, 234)" style="color: rgb(147, 51, 234)">【App Store】</span>。</p>
<p style="">接着就点击<span fontsize="" color="rgb(37, 99, 235)" style="color: rgb(37, 99, 235)">【获取】</span>直接下载就OK了。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FJ7mmdd.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">下载完成之后我们会再应用程序里看到我们这个程序<span fontsize="" color="rgb(192, 132, 252)" style="color: rgb(192, 132, 252)">【安装macOS Catalina】</span>。</p>
<p style="">因为我下载的是<span fontsize="" color="rgb(234, 88, 12)" style="color: rgb(234, 88, 12)">【Catalina】</span>版本，你们的不是这个名字，是你系统的名字。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FRlvslN.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h1 style="" id="%E5%88%B6%E4%BD%9C%E5%BC%95%E5%AF%BCu%E7%9B%98">制作<span fontsize="" color="rgb(25, 27, 31)" style="color: rgb(25, 27, 31)">引导U盘</span></h1>
<p style="">其实在下载过程中我们可以直接进行下一步，制作<span fontsize="" color="rgb(25, 27, 31)" style="color: rgb(25, 27, 31)">Macos引导安装的U盘启动盘。</span></p>
<p style="">首先我们需要把U盘插入我们的<span fontsize="" color="rgb(59, 130, 246)" style="color: rgb(59, 130, 246)">MacBook</span>，之后打开<span fontsize="" color="rgb(29, 78, 216)" style="color: rgb(29, 78, 216)">【磁盘工具】</span>。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FgPBjOY.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">选择我们的外置设备U盘，右键进行格式化<span fontsize="" color="rgb(161, 98, 7)" style="color: rgb(161, 98, 7)">【抹掉】</span>操作。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FAFVCzt.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">方便命令行不需要改动，<span fontsize="" color="rgb(161, 98, 7)" style="color: rgb(161, 98, 7)">【抹掉】</span>操作直接把U盘的名称修改成<span fontsize="" color="rgb(168, 85, 247)" style="color: rgb(168, 85, 247)">【MyVolume】</span>。</p>
<p style="">格式选择<span fontsize="" color="rgb(236, 72, 153)" style="color: rgb(236, 72, 153)">【Mac OS 扩展（日志式）】</span>，方案选择<span fontsize="" color="rgb(251, 146, 60)" style="color: rgb(251, 146, 60)">【GUID分区图】</span>。</p>
<p style="">之后直接点击<span fontsize="" color="rgb(220, 38, 38)" style="color: rgb(220, 38, 38)">【抹掉】</span>进行格式化。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2Fgid6wZ.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">显示<span fontsize="" color="rgb(96, 165, 250)" style="color: rgb(96, 165, 250)">【操作成功】</span>就OK了,点击<span fontsize="" color="rgb(236, 72, 153)" style="color: rgb(236, 72, 153)">【完成】</span>准备写入操作。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FsroQI7.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style=""><span fontsize="" color="rgb(22, 163, 74)" style="color: rgb(22, 163, 74)">【抹掉】</span>U盘之后，我们进入以下官网制作<span fontsize="" color="rgb(25, 27, 31)" style="color: rgb(25, 27, 31)">MacOS引导安装的U盘启动盘</span><span fontsize="" color="rgb(234, 88, 12)" style="color: rgb(234, 88, 12)">（可参照下面Apple官网）</span></p>
<hyperlink-card target="_blank" href="https://support.apple.com/zh-cn/101578" theme="small" style="margin-top: 0.75em; margin-bottom: 0;"><a href="https://support.apple.com/zh-cn/101578" target="_blank">https://support.apple.com/zh-cn/101578</a></hyperlink-card>
<p style="">之后我们选择<span fontsize="" color="rgb(126, 34, 206)" style="color: rgb(126, 34, 206)">【使用"终端"创建可引导的安装器】</span>。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FPLMKQh.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">跳转到命令行处，选择以下对应的版本命令。</p>
<p style=""><strong>Sonoma：</strong></p>
<pre><code>sudo /Applications/Install\ macOS\ Sonoma.app/Contents/Resources/createinstallmedia --volume /Volumes/MyVolume</code></pre>
<p style=""><strong>Ventura：</strong></p>
<pre><code>sudo /Applications/Install\ macOS\ Ventura.app/Contents/Resources/createinstallmedia --volume /Volumes/MyVolume</code></pre>
<p style=""><strong>Monterey：</strong></p>
<pre><code>sudo /Applications/Install\ macOS\ Monterey.app/Contents/Resources/createinstallmedia --volume /Volumes/MyVolume</code></pre>
<p style=""><strong>Big Sur：</strong></p>
<pre><code>sudo /Applications/Install\ macOS\ Big\ Sur.app/Contents/Resources/createinstallmedia --volume /Volumes/MyVolume</code></pre>
<p style=""><strong>Catalina：</strong></p>
<pre><code>sudo /Applications/Install\ macOS\ Catalina.app/Contents/Resources/createinstallmedia --volume /Volumes/MyVolume</code></pre>
<p style="">之后打开我们电脑的<span fontsize="" color="rgb(107, 33, 168)" style="color: rgb(107, 33, 168)">【终端】</span>。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FB9VxMe.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">我安装的是<span fontsize="" color="rgb(22, 163, 74)" style="color: rgb(22, 163, 74)">【Catalina】</span>版本，所以我就复制<span fontsize="" color="rgb(126, 34, 206)" style="color: rgb(126, 34, 206)">【Catalina】</span>的对应命令行。</p>
<pre><code>sudo /Applications/Install\ macOS\ Catalina.app/Contents/Resources/createinstallmedia --volume /Volumes/MyVolume</code></pre>
<p style="">把命令粘贴到<span fontsize="" color="rgb(59, 130, 246)" style="color: rgb(59, 130, 246)">【终端】</span>里，直接按<span fontsize="" color="rgb(234, 88, 12)" style="color: rgb(234, 88, 12)">【回车】</span>。</p>
<p style="">之后就需要我们输入<span fontsize="" color="rgb(248, 113, 113)" style="color: rgb(248, 113, 113)">MacBook的管理员密码</span>。</p>
<p style="">直接输入就可以，这里不会显示，输入完直接回车。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FABCgNQ.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">之后就会显示以下提示，我们直接输入<span fontsize="" color="rgb(220, 38, 38)" style="color: rgb(220, 38, 38)">【Y】</span>回车。</p>
<blockquote>
 <p style="">To continue we need to erase the volume at /Volumes/MyVolume.</p>
 <p style="">If you wish to continue type (Y) then press return:&nbsp;Y</p>
</blockquote>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FN2btTB.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">现在就直接等待引导盘的制作完成。</p>
<p style="">直到显示这样的一行字：</p>
<blockquote>
 <p style="">Install media now available at "/Volumes/Install macOS Catalina"</p>
</blockquote>
<p style="">我们这个macOS的U盘安装器就做好了。</p>
<h1 style="" id="%E5%AE%89%E8%A3%85%E7%B3%BB%E7%BB%9F"><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F3krCS8.webp&amp;size=m" width="100%" height="100%" style="display: inline-block">安装系统</h1>
<p style=""><span fontsize="" color="rgb(25, 27, 31)" style="color: rgb(25, 27, 31)">现在可以正式开始重新安装系统了。</span></p>
<p style=""><span fontsize="" color="rgb(25, 27, 31)" style="color: rgb(25, 27, 31)">把刚刚制作好的</span><span fontsize="" color="rgb(21, 128, 61)" style="color: rgb(21, 128, 61)">【U盘安装器】</span><span fontsize="" color="rgb(25, 27, 31)" style="color: rgb(25, 27, 31)">插入 MacBook。</span></p>
<p style=""><span fontsize="" color="rgb(25, 27, 31)" style="color: rgb(25, 27, 31)">之后启动 </span><span fontsize="" color="rgb(202, 138, 4)" style="color: rgb(202, 138, 4)">MacBook</span><span fontsize="" color="rgb(25, 27, 31)" style="color: rgb(25, 27, 31)"> 的同时按住</span><span fontsize="" color="rgb(37, 99, 235)" style="color: rgb(37, 99, 235)">【Option键】</span><span fontsize="" color="rgb(25, 27, 31)" style="color: rgb(25, 27, 31)">不放，进入恢复模式。</span></p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FhHBd9I.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style=""><span fontsize="" color="rgb(25, 27, 31)" style="color: rgb(25, 27, 31)">选择外接的</span><span fontsize="" color="rgb(34, 197, 94)" style="color: rgb(34, 197, 94)">【U盘安装器】</span><span fontsize="" color="rgb(25, 27, 31)" style="color: rgb(25, 27, 31)">。</span></p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FCEgGqU.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">看到这画面我们选择<span fontsize="" color="rgb(236, 72, 153)" style="color: rgb(236, 72, 153)">【磁盘工具】</span>。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F7MiKAC.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">进入<span fontsize="" color="rgb(59, 130, 246)" style="color: rgb(59, 130, 246)">【磁盘工具】</span>点击左上角钩上<span fontsize="" color="rgb(234, 88, 12)" style="color: rgb(234, 88, 12)">【显示所有设备】</span>。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FP7eAH7.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">选择 APPLE 磁盘下的<span fontsize="" color="rgb(252, 165, 165)" style="color: rgb(252, 165, 165)">【容器】</span>，把下面的所有宗卷删除掉。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FgXmlJn.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2Fc1Srmd.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F8leKxY.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FjyeDDU.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">删除完然后选择<span fontsize="" color="rgb(22, 163, 74)" style="color: rgb(22, 163, 74)">【APPLE SSD...】</span>右键<span fontsize="" color="rgb(147, 51, 234)" style="color: rgb(147, 51, 234)">【抹掉】</span>所有数据。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FLYx9Jy.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">名称自定义，格式选择<span fontsize="" color="rgb(234, 179, 8)" style="color: rgb(234, 179, 8)">【Mac OS 拓展（日志式）】</span>，方案选择<span fontsize="" color="rgb(147, 51, 234)" style="color: rgb(147, 51, 234)">【GUID分分区图】</span>，设置好后点击<span fontsize="" color="rgb(234, 88, 12)" style="color: rgb(234, 88, 12)">【抹掉】</span>。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FG7wolm.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F4tThSd.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">完成之后关闭<span fontsize="" color="rgb(147, 51, 234)" style="color: rgb(147, 51, 234)">【磁盘工具】</span>，回到刚刚<span fontsize="" color="rgb(96, 165, 250)" style="color: rgb(96, 165, 250)">【MacOS实用工具】</span>界面，选择<span fontsize="" color="rgb(239, 68, 68)" style="color: rgb(239, 68, 68)">【安装macOS】</span>。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FRYfwtD.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">进入安装界面之后直接点击<span fontsize="" color="rgb(34, 197, 94)" style="color: rgb(34, 197, 94)">【继续】</span>。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FqU4c1h.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">这也是点<span fontsize="" color="rgb(192, 132, 252)" style="color: rgb(192, 132, 252)">【继续】</span>。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F7l2l9u.webp&amp;size=m" width="863px" height="667px" style="display: inline-block"></p>
<p style="">选择安装系统的磁盘，之后点击<span fontsize="" color="rgb(249, 115, 22)" style="color: rgb(249, 115, 22)">【安装】</span>。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FNutNxt.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">现在我们就耐心等待安装完成，大概需要十几分钟，安装完成会自动重启进入系统设置界面。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FFZooE4.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F03Wf8T.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">重启后我们来到系统的设置界面，这里我们直接选择<span fontsize="" color="rgb(239, 68, 68)" style="color: rgb(239, 68, 68)">【中国大陆】</span>之后点<span fontsize="" color="rgb(59, 130, 246)" style="color: rgb(59, 130, 246)">【继续】</span>。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FrkhyZr.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">还是点<span fontsize="" color="rgb(234, 88, 12)" style="color: rgb(234, 88, 12)">【继续】</span>。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FrcFxcB.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">再点<span fontsize="" color="rgb(192, 132, 252)" style="color: rgb(192, 132, 252)">【继续】</span>。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FcmWa0B.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style=""><span fontsize="" color="rgb(25, 27, 31)" style="color: rgb(25, 27, 31)">来到这个界面，</span>刚刚如果你们通过<span fontsize="" color="rgb(22, 163, 74)" style="color: rgb(22, 163, 74)">【时间机器】</span>备份了数据的。</p>
<p style=""><span fontsize="" color="rgb(25, 27, 31)" style="color: rgb(25, 27, 31)">可以插入备份好的硬盘或者U盘，</span>选择第一项<span fontsize="" color="rgb(219, 39, 119)" style="color: rgb(219, 39, 119)">【从Mac、时间机器备份或启动磁盘】</span>进行数据的传输。</p>
<p style="">我这是不需要恢复数据，所以我直接选择最后一个<span fontsize="" color="rgb(107, 33, 168)" style="color: rgb(107, 33, 168)">【现在不传输任何信息】</span>，点<span fontsize="" color="rgb(202, 138, 4)" style="color: rgb(202, 138, 4)">【继续】</span>。</p>
<blockquote>
 <p style="">（如果你现在想快速线安装好系统也可以直接选择这一项，后续再使用<span fontsize="" color="rgb(252, 165, 165)" style="color: rgb(252, 165, 165)">【迁移助理】</span>传输之前的数据）</p>
</blockquote>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FIkLqZl.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">这登陆账号这一步我们直接选择<span fontsize="" color="rgb(37, 99, 235)" style="color: rgb(37, 99, 235)">【稍后设置】</span>，进入到系统之后再做登陆操作。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FCUfaoh.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">条款条件这直接点接<span fontsize="" color="rgb(147, 51, 234)" style="color: rgb(147, 51, 234)">【同意】</span>。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F2mbVxv.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">创建用户自己填写一下就可以了，完成后点<span fontsize="" color="rgb(248, 113, 113)" style="color: rgb(248, 113, 113)">【继续】</span>。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FmHKliB.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">快速设置也是点<span fontsize="" color="rgb(21, 128, 61)" style="color: rgb(21, 128, 61)">【继续】</span>。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2Fn3xRl4.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">分析这建议把<span fontsize="" color="rgb(29, 78, 216)" style="color: rgb(29, 78, 216)">【与App开发者共享崩溃与使用数据】</span>钩上，然后点<span fontsize="" color="rgb(190, 24, 93)" style="color: rgb(190, 24, 93)">【继续】</span>。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FyLtkNo.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">然后就进入到设置<span fontsize="" color="rgb(219, 39, 119)" style="color: rgb(219, 39, 119)">【Siri】</span>，需不需要启动大家按照自己实际情况设置就可以了。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FSJ0SAt.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style=""><span fontsize="" color="rgb(239, 68, 68)" style="color: rgb(239, 68, 68)">【触控ID】</span>也一样，大家自行设置一下就行。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FK3nntc.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">选择一个自己喜欢的外观颜色点<span fontsize="" color="rgb(147, 51, 234)" style="color: rgb(147, 51, 234)">【继续】</span>。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FlOjvQQ.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">之后就进到我们的新系统了，到这我们整个系统安装就已经是完成了。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FXJDocB.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FoylJxb.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">然后第一时间试一试我们之前 Touch Bar 亮度调节是否恢复正常。</p>
<p style="">可以看到，恢复正常能调节了。</p>
<p style=""><span style="font-size: 20px"><strong>亮度调节恢复正常展示：</strong></span></p>
<p style="text-align: center; ; ">
 <video src="https://pddgo-img.s3.us-east-005.backblazeb2.com/37_1725094819.mp4" width="66%" height="auto" controls="true"></video>
</p>
<h1 style="" id="%E7%BB%93%E8%AF%AD">结语</h1>
<p style="">好了，本次的降级过程就到此结束。</p>
<p style="">反正旧款机器回到这个版本也是够用了，速度还快了一些。</p>
<p style="">终于可以告别晚上<span fontsize="" color="rgb(219, 39, 119)" style="color: rgb(219, 39, 119)">"亮瞎眼"</span>的烦恼了。</p>
<p style="">有同样问题的小伙伴可以尝试这个一方法。</p>
<p style="">好了本次设置操作过程结束，希望对大家有所帮助！！！</p>
<p style="">我是阿狸鹿丫，一个业余爱瞎折腾的数码软件爱好者，技术小白。</p>
<p style="text-align: center; ; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=%2Fupload%2Fthe-end.webp&amp;size=m" alt="the-end.webp" width="25%" height="auto" style="display: inline-block"></p>
<p style=""></p>
<p style=""></p>
<p style=""><a rel="nofollow noreferrer" href="https://link.zhihu.com/?target=https%3A//support.apple.com/zh-cn/101578" target="_blank" class=" external"><span style="font-size: 0px; color: transparent">/101578</span></a><span style="font-size: 0px; color: transparent">是基于https://support.apple.com/zh-cn/1015</span></p>]]></description><guid isPermaLink="false">/archives/g5KkNtET</guid><dc:creator>阿狸鹿丫</dc:creator><enclosure url="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FMSxMw8.webp&amp;size=m" type="image/jpeg" length="0"/><category>教程</category><category>分享</category><pubDate>Sat, 31 Aug 2024 13:19:23 GMT</pubDate></item><item><title><![CDATA[黑神话:悟空 SteamDeck 流畅设置教程]]></title><link>https://blog.aliluya.com/archives/T9rpeUSu</link><description><![CDATA[<img src="https://blog.aliluya.com/plugins/feed/assets/telemetry.gif?title=%E9%BB%91%E7%A5%9E%E8%AF%9D%3A%E6%82%9F%E7%A9%BA%20SteamDeck%20%E6%B5%81%E7%95%85%E8%AE%BE%E7%BD%AE%E6%95%99%E7%A8%8B&amp;url=/archives/T9rpeUSu" width="1" height="1" alt="" style="opacity:0;">
<div class="html-edited">
 <hao-note class="flat" noicon="haofont hao-icon-dengpao" style="orange">大家好，我是阿狸鹿丫，一个业余爱瞎折腾的数码软件爱好者，技术小白。</hao-note>
</div>
<h1 style="" id="%E5%89%8D%E8%A8%80">前言</h1>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FQxHQHn.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">国产3A大作 <span color="#eab308" style="color: #eab308">黑神话:悟空</span> 真的是超级火🔥!</p>
<p style="">这几天自己在玩，真心话，很不错！</p>
<p style="">主要现在我自己也没有用台式机玩或者PS，主要玩游戏都是在掌机，方便随时可以玩，哈哈！</p>
<p style="">然后这款游戏需要的配置非常高，对于掌机只能使用低画质游玩。<span color="#9ca3af" style="color: #9ca3af">（能玩已经是很好了）</span></p>
<p style="">所以这几天在玩的过程中自己在网上看了其他大神的教程，结合了自己的使用感受推荐下面的设置给大家。</p>
<p style="">下面设置我自己感觉在<span color="#60a5fa" style="color: #60a5fa">Steam deck</span>是最完美的设置了。</p>
<p style="">流畅不卡，画质可以，长时间游玩都不会有问题。</p>
<p style="">下面直接进入设置教程！</p>
<h1 style="" id="%E8%AE%BE%E7%BD%AE%E6%95%99%E7%A8%8B">设置教程</h1>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FEz8eZC.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h2 style="" id="%E6%8F%90%E5%8D%87%E8%99%9A%E6%8B%9F%E5%86%85%E5%AD%98(%E5%BB%BA%E8%AE%AE%E8%AE%BE%E7%BD%AE)">提升虚拟内存(建议设置)</h2>
<p style="">这游戏使用内存比较厉害，所以建议安装一个优化软件<span color="#a855f7" style="color: #a855f7">【CyroUtilities】</span>扩展一下虚拟内存。</p>
<p style="">否则玩久了容易卡死，我第一天玩的时候就是玩久了很卡，所以我感觉这一步很有必要。</p>
<blockquote>
 <p style="">CyroUtilities详细安装教程请浏览下面这一篇文章：</p>
 <hyperlink-card target="_blank" href="https://blog.aliluya.com/archives/CDZPqGF4" theme="regular" style="margin-top: 0.75em; margin-bottom: 0;"><a href="https://blog.aliluya.com/archives/CDZPqGF4" target="_blank">https://blog.aliluya.com/archives/CDZPqGF4</a></hyperlink-card>
</blockquote>
<h2 style="" id="%E5%A4%96%E9%83%A8%E5%B1%9E%E6%80%A7%E8%AE%BE%E7%BD%AE">外部属性设置</h2>
<p style="">下面开始介绍一下我的 <span color="#f472b6" style="color: #f472b6">SteamDeck</span> <span color="#f87171" style="color: #f87171">黑神话：悟空 </span>的设置教程。</p>
<p style="">首先我们进入游戏前，需要设置一下分辨率。进入游戏界面点击右边<span color="#c2410c" style="color: #c2410c">【齿轮】</span>。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F1OH0aQ.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">之后弹出菜单选择<span color="#be185d" style="color: #be185d">【属性】</span>。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FBjh7c2.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">进入在<span color="#f87171" style="color: #f87171">【通用】</span>设置里面把游戏分辨率直接改成<span color="#3b82f6" style="color: #3b82f6">【1024x640】</span>，同时把<span color="#ca8a04" style="color: #ca8a04">【设置内部和外部显示器的分辨率】</span>选项<span color="#a855f7" style="color: #a855f7">打开</span>。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FIPruhp.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h2 style="" id="%E6%B8%B8%E6%88%8F%E5%86%85%E9%83%A8%E8%AE%BE%E7%BD%AE">游戏内部设置</h2>
<p style="">外部设置完成之后，我们进入游戏里面的<span color="#15803d" style="color: #15803d">【设置】</span>。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FD7BI4Y.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">选择设置里面的<span color="#eab308" style="color: #eab308">【显示】</span>，把<span color="#be185d" style="color: #be185d">【帧率上限】</span>、<span color="#a16207" style="color: #a16207">【垂直同步】</span>以及<span color="#ef4444" style="color: #ef4444">【动态模糊】</span>都关闭。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FfRsTDi.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">接着选择下面的<span color="#9d174d" style="color: #9d174d">【画质】</span>，把<span color="#f97316" style="color: #f97316">【超采样清晰度】</span>设置成<span color="#3b82f6" style="color: #3b82f6">【65】</span>。</p>
<p style="">下面的<span color="#991b1b" style="color: #991b1b">【超分辨率采样】</span>选择<span color="#eab308" style="color: #eab308">【TSR】</span>。</p>
<p style="">如果选<span color="#c084fc" style="color: #c084fc">FSR</span>的话，动态画面下颗粒感会非常强。</p>
<p style=""><span color="#22c55e" style="color: #22c55e">【帧生成】</span>关闭，这个千万不要打开。</p>
<p style="">打开之后帧数虽然有四五十帧，但是整个画面延迟非常厉害，很不顺畅。</p>
<p style="">NVIDIA的<span color="#ec4899" style="color: #ec4899">【全景光线追踪】</span>也关闭。</p>
<p style="">画面细节设置里，基本都是<span color="#6b21a8" style="color: #6b21a8">【低】</span>。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FyuR06u.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">只有<span color="#3b82f6" style="color: #3b82f6">【阴影质量】</span>和<span color="#ea580c" style="color: #ea580c">【贴图质量】</span>设置为<span color="#db2777" style="color: #db2777">【中】</span>。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2Fak5Esz.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">然后点击<span color="#3b82f6" style="color: #3b82f6">【SteamDeck】</span>的<span color="#9333ea" style="color: #9333ea">【Y】</span>键，保存设置。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FmtI0yE.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h2 style="" id="steamdeck%E6%80%A7%E8%83%BD%E8%AE%BE%E7%BD%AE">SteamDeck性能设置</h2>
<p style="">然后接下里就到 <span color="#f9a8d4" style="color: #f9a8d4">SteamDeck</span> 的<span color="#f97316" style="color: #f97316">【性能面板】</span>。</p>
<p style="">点击<span color="#60a5fa" style="color: #60a5fa">SteamDeck</span>物理按键，三个点<span color="#ef4444" style="color: #ef4444">【</span><span style="font-size: 16px; color: #ef4444"><strong>···</strong></span><span color="#ef4444" style="color: #ef4444">】</span>。</p>
<p style="">选择<span color="#eab308" style="color: #eab308">【闪电】</span>标志，进入<span color="#db2777" style="color: #db2777">【性能面板】</span>。</p>
<p style="">往下拉，把<span color="#16a34a" style="color: #16a34a">【帧率显示】</span>设置成为<span color="#3b82f6" style="color: #3b82f6">【30 FPS】</span>。</p>
<p style="">然后下面<span color="#c084fc" style="color: #c084fc">【半速率着色】</span>也关掉，<span color="#be185d" style="color: #be185d">【TDP（预设计功耗）限制】</span>关闭。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FX0exq3.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">再往下拉<span color="#3b82f6" style="color: #3b82f6">【缩放过滤器】</span>我们选择<span color="#db2777" style="color: #db2777">【FSR】</span>。</p>
<p style=""><span color="#ea580c" style="color: #ea580c">【FSR 锐度】</span>设置成<span color="#ef4444" style="color: #ef4444">【5】</span>。</p>
<p style="">这样低分辨率下的画面，清晰度就提上来了，其他都不用动。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F866LWR.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h1 style="" id="%E7%BB%93%E8%AF%AD">结语</h1>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FpQAnaz.webp&amp;size=m" width="863px" height="385px" style="display: inline-block"></p>
<p style="">这套设置下来，续航时间有所提高，运动画面会有少许颗粒感。</p>
<p style="">运行帧数除了过场CG下降比较明显以外，平时基本上都能稳定在<span color="#16a34a" style="color: #16a34a">【30帧】</span>。</p>
<p style="">即使有浮动也不会太大，个人感觉这一套设置已经可以很顺畅的游玩了。</p>
<p style="">好了本次设置教程结束，希望对大家有所帮助！！！</p>
<p style="">我是阿狸鹿丫，一个业余爱瞎折腾的数码软件爱好者，技术小白。</p>
<p style="text-align: center; ; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=%2Fupload%2Fthe-end.webp&amp;size=m" alt="the-end.webp" width="25%" height="auto" style="display: inline-block"></p>
<p style=""></p>
<p style=""></p>]]></description><guid isPermaLink="false">/archives/T9rpeUSu</guid><dc:creator>阿狸鹿丫</dc:creator><enclosure url="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FVGSUVo.webp&amp;size=m" type="image/jpeg" length="0"/><category>推荐</category><category>教程</category><category>游戏</category><pubDate>Sun, 25 Aug 2024 06:17:28 GMT</pubDate></item><item><title><![CDATA[SteamDeck 虚拟内存拓展 教程]]></title><link>https://blog.aliluya.com/archives/CDZPqGF4</link><description><![CDATA[<img src="https://blog.aliluya.com/plugins/feed/assets/telemetry.gif?title=SteamDeck%20%E8%99%9A%E6%8B%9F%E5%86%85%E5%AD%98%E6%8B%93%E5%B1%95%20%E6%95%99%E7%A8%8B&amp;url=/archives/CDZPqGF4" width="1" height="1" alt="" style="opacity:0;">
<div class="html-edited">
 <hao-note class="flat" noicon="haofont hao-icon-dengpao" style="orange">大家好，我是阿狸鹿丫，一个业余爱瞎折腾的数码软件爱好者，技术小白。</hao-note>
</div>
<h1 style="" id="%E5%89%8D%E8%A8%80">前言</h1>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FkFv1xI.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">经常<span fontsize="" color="rgb(22, 101, 52)" style="color: rgb(22, 101, 52)">Steam Deck</span>玩大型的游戏，玩久了会很卡，或者卡死崩溃。</p>
<p style="">这很多都是因为内存不足导致，虽然<span fontsize="" color="rgb(29, 78, 216)" style="color: rgb(29, 78, 216)">Steam Deck</span>物理内存有16G。</p>
<p style="">但是还是扛不住部分大型游戏对内存的疯狂需求。</p>
<p style="">这篇文章直接给大家分享一个性能优化工具<span fontsize="" color="rgb(234, 88, 12)" style="color: rgb(234, 88, 12)">【CyroUtilities】</span>简称CU。</p>
<p style="">他可以对Steam Deck的虚拟内存大小进行设置，在物理内存不足的情况下我们就用虚拟内存来凑。</p>
<p style="">接下来我们进入<span fontsize="" color="rgb(147, 51, 234)" style="color: rgb(147, 51, 234)">【CyroUtilities】</span>安装教程。</p>
<h1 style="" id="cyroutilities-%E5%AE%89%E8%A3%85%E6%95%99%E7%A8%8B">CyroUtilities 安装教程</h1>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FRCLvCm.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h2 style="" id="%E6%A1%8C%E9%9D%A2%E6%A8%A1%E5%BC%8F">桌面模式</h2>
<p style="">首先我们需要进入<span fontsize="" color="rgb(234, 88, 12)" style="color: rgb(234, 88, 12)">Steam Deck</span>的桌面模式。</p>
<p style="">按 <span fontsize="" color="rgb(126, 34, 206)" style="color: rgb(126, 34, 206)">【Steam键】</span>选择<span fontsize="" color="rgb(220, 38, 38)" style="color: rgb(220, 38, 38)">【电源 】</span>。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FtkV2PX.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">之后选择进入<span fontsize="" color="rgb(234, 88, 12)" style="color: rgb(234, 88, 12)">【桌面模式】</span>。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FAUcldB.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h2 style="" id="%E4%B8%8B%E8%BD%BD">下载</h2>
<p style="">进入<span fontsize="" color="rgb(34, 197, 94)" style="color: rgb(34, 197, 94)">【桌面模式】</span>之后，打开浏览器。</p>
<p style="">进入这个网站：<a href="https://www.mhhf.com/article/detail/1585"><strong>https://www.mhhf.com/article/detail/1585</strong></a></p>
<p style="">下载 <span fontsize="" color="rgb(250, 204, 21)" style="color: rgb(250, 204, 21)">SteamDeck 内存管理性能提升工具（CyroUtilities 2.2）</span></p>
<blockquote>
 <p style=""><span style="font-size: 16px; color: rgb(0, 204, 255)">灵动下载：</span><a rel="noopener" href="https://www.mhhf.com/Deck/CryoUtilities/CU_Offline.zip" target="_blank"><span fontsize="" color=""><u>内存管理性能提升工具 CyroUtilities（6.74MB）</u></span></a>
  <br>
  <span style="font-size: 16px; color: rgb(0, 204, 255)">百度网盘：</span><a rel="noopener" href="https://pan.baidu.com/s/11s00k8D8Ay4Dl-WiCrHstg?pwd=qer0" target="_blank"><span fontsize="" color=""><u>网盘下载点这里（提取码：qer0）（6.74MB）</u></span></a></p>
</blockquote>
<p style=""><span style="font-size: 16px; color: rgb(241, 196, 15)">说明：版本2.2</span></p>
<ul>
 <li>
  <p style=""><span style="font-size: 16px; color: rgb(193, 193, 193)">实现扩充swap分区大小改善内存压力。</span></p>
 </li>
 <li>
  <p style=""><span style="font-size: 16px; color: rgb(193, 193, 193)"> 玩游戏因内存不足经常卡死的必装。</span></p>
 </li>
 <li>
  <p style=""><span style="font-size: 16px; color: rgb(193, 193, 193)">有助于游戏性能改善帧率提升。</span></p>
 </li>
 <li>
  <p style=""><span style="font-size: 16px; color: rgb(193, 193, 193)">清理已卸载游戏的垃圾数据。</span></p>
 </li>
</ul>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FspESKq.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h2 style="" id="%E5%AE%89%E8%A3%85">安装</h2>
<p style="">下载完成之后，进入下载好的文件目录，我的是下载到<span fontsize="" color="rgb(236, 72, 153)" style="color: rgb(236, 72, 153)">【下载】</span>目录了。</p>
<p style="">打开<span fontsize="" color="rgb(154, 52, 18)" style="color: rgb(154, 52, 18)">【文件管理器】</span>进入<span fontsize="" color="rgb(37, 99, 235)" style="color: rgb(37, 99, 235)">【下载】</span>会得到一个<span fontsize="" color="rgb(251, 146, 60)" style="color: rgb(251, 146, 60)">【CU_Offline.zip】</span>压缩包文件。</p>
<p style="">把他解压到当前目录。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FCMAWhY.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">解压完成，进入解压出来的文件夹<span fontsize="" color="rgb(161, 98, 7)" style="color: rgb(161, 98, 7)">【CU_Offline】</span>。</p>
<p style="">里面有一个文档文件<span fontsize="" color="rgb(251, 146, 60)" style="color: rgb(251, 146, 60)">【安装说明.txt】</span>和<span fontsize="" color="rgb(30, 64, 175)" style="color: rgb(30, 64, 175)">【CU-Offline-Install】</span>文件夹。</p>
<p style=""><span fontsize="" color="rgb(219, 39, 119)" style="color: rgb(219, 39, 119)">【安装说明】</span>里面有安装教程，现在就按照里面的三步操作。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FTMl3D6.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">安装之前，首先我们需要打开 <span fontsize="" color="rgb(185, 28, 28)" style="color: rgb(185, 28, 28)">【Konsole 命令行终端】</span>。</p>
<p style="">回到Steam Deck桌面，点击左下角<span fontsize="" color="rgb(21, 128, 61)" style="color: rgb(21, 128, 61)">【开始菜单】</span>。</p>
<p style="">选择<span fontsize="" color="rgb(244, 114, 182)" style="color: rgb(244, 114, 182)">【全部应用程序】</span>之后往下拉选择<span fontsize="" color="rgb(251, 146, 60)" style="color: rgb(251, 146, 60)">【Konsole 命令行终端】</span>。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2Fyxpta2.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">打开<span fontsize="" color="rgb(253, 224, 71)" style="color: rgb(253, 224, 71)">【Konsole 命令行终端】</span>之后按照<span fontsize="" color="rgb(252, 165, 165)" style="color: rgb(252, 165, 165)">【安装说明】</span>的步骤开始安装<span fontsize="" color="rgb(74, 222, 128)" style="color: rgb(74, 222, 128)">【CyroUtilities】</span>。</p>
<p style="">第一步：复制以下3行代码到 Konsole 终端里，按<span fontsize="" color="rgb(220, 38, 38)" style="color: rgb(220, 38, 38)">【回车】</span>运行就可以了。</p>
<pre><code>cd $HOME
mkdir .cryo_utilities
cd .cryo_utilities</code></pre>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FMhPDCe.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">接下来第二步，先将<span fontsize="" color="rgb(234, 88, 12)" style="color: rgb(234, 88, 12)">【CU-Offline-Install】</span>文件夹内的文件右键选择复制。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FJNZqAT.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">之后进入这个路径：<code>/home/deck/.cryo_utilities/</code></p>
<p style="">打开<span fontsize="" color="rgb(236, 72, 153)" style="color: rgb(236, 72, 153)">【文件管理器】</span>先点击右上角<span fontsize="" color="rgb(133, 77, 14)" style="color: rgb(133, 77, 14)">【三条杠】</span>图标设置一下<span fontsize="" color="rgb(107, 33, 168)" style="color: rgb(107, 33, 168)">【显示隐藏文件】</span>。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FM5nkBV.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">再进入我们的指定文件夹<span fontsize="" color="rgb(22, 163, 74)" style="color: rgb(22, 163, 74)">【.cryo_utilities】</span>。</p>
<blockquote>
 <p style=""><span fontsize="" color="rgb(202, 138, 4)" style="color: rgb(202, 138, 4)">【文件管理器】→【主文件夹】→【.cryo_utilities】</span></p>
</blockquote>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2Fso9ScI.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">把刚刚复制的那三个文件粘贴到这路径的文件夹中。</p>
<blockquote>
 <p style="">图片里第四个文件<span fontsize="" color="rgb(20, 83, 45)" style="color: rgb(20, 83, 45)">【cryoutilities.log】</span>是因为我已经安装运行过，产生的日志文件。</p>
</blockquote>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FIHOOcn.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">文件复制粘贴完成之后接着我们就进入第三步。</p>
<p style="">复制以下所有代码到 Konsole 里，按<span fontsize="" color="rgb(147, 51, 234)" style="color: rgb(147, 51, 234)">【回车】</span>运行就完成安装了。</p>
<pre><code>cd ~/.cryo_utilities
chmod +x cryo_utilities
chmod +x launcher.sh
xdg-icon-resource install cryo-utilities.png --size 64
echo '#!/usr/bin/env xdg-open
[Desktop Entry]
Name=CryoUtilities
Exec=bash $HOME/.cryo_utilities/launcher.sh
Icon=cryo-utilities
Terminal=false
Type=Application
StartupNotify=false' &gt; $HOME/Desktop/CryoUtilities.desktop
chmod +x $HOME/Desktop/CryoUtilities.desktop
echo '#!/usr/bin/env xdg-open
[Desktop Entry]
Name=CryoUtilities
Exec=bash $HOME/.cryo_utilities/launcher.sh
Icon=cryo-utilities
Terminal=false
Type=Application
Categories=Utility
StartupNotify=false' &gt; $HOME/.local/share/applications/CryoUtilities.desktop
chmod +x $HOME/.local/share/applications/CryoUtilities.desktop
update-desktop-database ~/.local/share/applications</code></pre>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FihXen6.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h2 style="" id="%E8%AE%BE%E7%BD%AE">设置</h2>
<p style="">完成以上三步之后，不出意外，返回桌面我们就可以看软件<span fontsize="" color="rgb(29, 78, 216)" style="color: rgb(29, 78, 216)">【CyroUtilities】</span>。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FR8ilBB.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">直接打开软件，显示一个对话框，直接选择<span fontsize="" color="rgb(37, 99, 235)" style="color: rgb(37, 99, 235)">【Yes】</span>即可。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2Fo1NyEg.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">接着会让我们输入<span fontsize="" color="rgb(220, 38, 38)" style="color: rgb(220, 38, 38)">【管理员密码】</span>，输入完成之后点击<span fontsize="" color="rgb(34, 197, 94)" style="color: rgb(34, 197, 94)">【Submit】</span>。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FGW4wYt.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">现在我们就进入了软件主界面，直接点击<span fontsize="" color="rgb(34, 197, 94)" style="color: rgb(34, 197, 94)">【Recommended】</span>一键完成推荐设置。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FknKZ04.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">点击之后会出现设置进度条，可以看到推荐设置把<span fontsize="" color="rgb(29, 78, 216)" style="color: rgb(29, 78, 216)">Swap</span>设置成了<span fontsize="" color="rgb(239, 68, 68)" style="color: rgb(239, 68, 68)">16G</span>。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FTBP5gr.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">设置完成之后会弹出一个成功提示，直接点击<span fontsize="" color="rgb(234, 88, 12)" style="color: rgb(234, 88, 12)">【OK】</span>就完成了。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FVYeEmf.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">如果想恢复成默认设置的话，就点击下面的第二个选项<span fontsize="" color="rgb(126, 34, 206)" style="color: rgb(126, 34, 206)">【Stock】</span>。</p>
<h1 style="" id="%E7%BB%93%E8%AF%AD">结语</h1>
<p style="">这样就完成了Steam Deck的虚拟内存拓展。</p>
<p style=""><span fontsize="" color="rgb(234, 179, 8)" style="color: rgb(234, 179, 8)">【CyroUtilities】</span>设置完成之后，对于 <span fontsize="" color="rgb(29, 78, 216)" style="color: rgb(29, 78, 216)">Steam Deck</span> 由于内存不足导致游戏卡顿、崩溃、甚至卡死是相当有用的。</p>
<p style="">还有对于游戏的帧率提升也有一定的帮助。</p>
<p style="">我是阿狸鹿丫，一个业余爱瞎折腾的数码软件爱好者，技术小白。</p>
<p style="text-align: center; ; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=%2Fupload%2Fthe-end.webp&amp;size=m" alt="the-end.webp" width="25%" height="auto" style="display: inline-block"></p>]]></description><guid isPermaLink="false">/archives/CDZPqGF4</guid><dc:creator>阿狸鹿丫</dc:creator><enclosure url="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2Fwm4oOa.webp&amp;size=m" type="image/jpeg" length="0"/><category>教程</category><category>游戏</category><pubDate>Sat, 24 Aug 2024 18:33:41 GMT</pubDate></item><item><title><![CDATA[Steam Deck 体验《黑神话：悟空》]]></title><link>https://blog.aliluya.com/archives/mlnonlJt</link><description><![CDATA[<img src="https://blog.aliluya.com/plugins/feed/assets/telemetry.gif?title=Steam%20Deck%20%E4%BD%93%E9%AA%8C%E3%80%8A%E9%BB%91%E7%A5%9E%E8%AF%9D%EF%BC%9A%E6%82%9F%E7%A9%BA%E3%80%8B&amp;url=/archives/mlnonlJt" width="1" height="1" alt="" style="opacity:0;">
<div class="html-edited">
 <hao-note class="flat" noicon="haofont hao-icon-dengpao" style="orange">大家好，我是阿狸鹿丫，一个业余爱瞎折腾的数码软件爱好者，技术小白。</hao-note>
</div>
<h1 style="text-align: center; ; " id="%E3%80%8A%E9%BB%91%E7%A5%9E%E8%AF%9D%EF%BC%9A%E6%82%9F%E7%A9%BA%E3%80%8B"><span style="font-size: 24px"><strong>《黑神话：悟空》</strong></span></h1>
<p style="">
 <video src="https://www.xuxueli.cn/wukong.mp4" width="100%" height="auto" autoplay="true" controls="true" loop="true"></video>
</p>
<blockquote>
 <p style="">官网：<a href="https://www.heishenhua.com/"><strong>https://www.heishenhua.com/</strong></a></p>
</blockquote>
<p style="">《黑神话：悟空》是一款以中国神话为背景的动作角色扮演游戏。你将扮演一位“天命人”，为了探寻昔日传说的真相，踏上一条充满危险与惊奇的西游之路。</p>
<p style="">《黑神话：悟空》自问世以来便受到海内外无数玩家的关注与期待，有着广泛的影响力与号召力；</p>
<p style="">游戏也因浓厚的文化底蕴、过硬的画面质量以及流畅的操作体验而广受好评，积累了极佳的口碑。</p>
<p style="">在这片国内厂商不敢轻易涉足的空白中，《黑神话：悟空》迈出了坚实有力的第一步。</p>
<h1 style="" id="%E5%AE%A3%E4%BC%A0%E7%89%87">宣传片</h1>
<p style="">
 <video src="https://video.steamstatic.com/store_trailers/257048151/movie480_vp9.webm?t=1724238298" width="100%" height="auto" autoplay="true" controls="true" loop="true"></video>
</p>
<h1 style="" id="%E9%A2%84%E8%B4%AD%E4%B8%8B%E8%BD%BD">预购下载</h1>
<p style="">喜欢玩游戏得我肯定不会错过，更何况这是国产3A大作，那更加要支持一手。</p>
<p style="">在网上很多评测中看到说SD可以低画质运行，所以在开测的前一天晚上，预购之后预下载等待明天的开启。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FIMWNr5.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FCk6x2h.webp&amp;size=m" alt="66c449d144252.webp" width="100%" height="100%" style="display: inline-block"></p>
<h1 style="" id="steam-deck-%E8%AF%95%E7%8E%A9">Steam Deck 试玩</h1>
<p style="">够买了之后我就看到另一些评论说SD玩不了，很卡。</p>
<p style="">今天我就亲自试验了一下，接下来请看看游戏画质和游戏帧数。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2Faq1SAH.webp&amp;size=m" alt="66c44864d0ace.webp" width="991px" height="Infinitypx" style="display: inline-block"></p>
<p style="">开始进入有点卡卡的，还带点马赛克。</p>
<p style="">逼近低画质这也属于正常啦，帧数在17-20帧左右。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FD6kMG8.webp&amp;size=m" alt="66c449406394e.webp" width="990px" height="Infinitypx" style="display: inline-block"></p>
<p style="">之后进入到游戏自己操作的时候我设置了一下配置，帧数在30-50帧上下浮动。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FISXAY6.webp&amp;size=m" alt="66c44a672acaf.webp" width="100%" height="100%" style="display: inline-block"></p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FbImPSU.webp&amp;size=m" alt="66c44a9b53a18.webp" width="100%" height="100%" style="display: inline-block"></p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2Flb1Sol.webp&amp;size=m" alt="66c44f54a4633.webp" width="100%" height="100%" style="display: inline-block"></p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FEFEsu0.webp&amp;size=m" alt="66c44f53c95b6.webp" width="100%" height="100%" style="display: inline-block"></p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2Fs12ZKl.webp&amp;size=m" alt="66c44f57e6f3e.webp" width="100%" height="100%" style="display: inline-block"></p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FweDWTw.webp&amp;size=m" alt="66c44f4e2c073.webp" width="991px" height="Infinitypx" style="display: inline-block"></p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FeT8eRo.webp&amp;size=m" alt="66c44f54e9f1e.webp" width="991px" height="Infinitypx" style="display: inline-block"></p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FyWCtz8.webp&amp;size=m" alt="66c4cfed07b82.webp" width="100%" height="100%" style="display: inline-block"></p>
<p style="">以上截图全都是SteamDeck掌机截图，最低画质！<span fontsize="" color="rgb(156, 163, 175)" style="color: rgb(156, 163, 175)">（上传到图床还压缩了一点画质）</span></p>
<p style="">看看大家能否接受了，我个人感觉，在掌机上能玩已经不错了！</p>
<h1 style="" id="%E7%BB%93%E8%AF%AD">结语</h1>
<p style="">总的来说，结果还是不错的，在这么小小的掌机上低画质能游玩这款游戏已近心满意足了。</p>
<p style="">能随时随地的畅玩这款国产3A大作，还嫌弃啥呢。哈哈哈！</p>
<p style="">我是阿狸鹿丫，一个业余爱瞎折腾的数码软件爱好者，技术小白。</p>
<p style="text-align: center; ; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=%2Fupload%2Fthe-end.webp&amp;size=m" alt="the-end.webp" width="25%" height="auto" style="display: inline-block"></p>
<p style=""></p>
<p style=""></p>
<p style=""></p>]]></description><guid isPermaLink="false">/archives/mlnonlJt</guid><dc:creator>阿狸鹿丫</dc:creator><enclosure url="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FhELbmH.webp&amp;size=m" type="image/jpeg" length="0"/><category>杂谈</category><category>游戏</category><pubDate>Tue, 20 Aug 2024 13:20:07 GMT</pubDate></item><item><title><![CDATA[黑群晖 7.2 安装教程 闲置主机变私人存储服务器]]></title><link>https://blog.aliluya.com/archives/m5b3Xuc3</link><description><![CDATA[<img src="https://blog.aliluya.com/plugins/feed/assets/telemetry.gif?title=%E9%BB%91%E7%BE%A4%E6%99%96%207.2%20%E5%AE%89%E8%A3%85%E6%95%99%E7%A8%8B%20%E9%97%B2%E7%BD%AE%E4%B8%BB%E6%9C%BA%E5%8F%98%E7%A7%81%E4%BA%BA%E5%AD%98%E5%82%A8%E6%9C%8D%E5%8A%A1%E5%99%A8&amp;url=/archives/m5b3Xuc3" width="1" height="1" alt="" style="opacity:0;">
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FdlSOOn.webp&amp;size=m" alt="66b32d871fa41.webp" width="100%" height="100%" style="display: inline-block"></p>
<div class="html-edited">
 <hao-note class="flat" noicon="haofont hao-icon-dengpao" style="orange">大家好，我是阿狸鹿丫，一个业余爱瞎折腾的数码软件爱好者，技术小白。</hao-note>
</div>
<h1 style="" id="%E5%89%8D%E8%A8%80">前言</h1>
<p style="">近段时间发现自己办公室有几台闲置的电脑主机，我办公室电脑基本每天都24小时开机的。</p>
<p style="">还有就是网络使用率很少，所以想着在办公室弄一台私人存储服务器用于存储其他杂七杂八的资料还有可以做测试机子使用。</p>
<p style="">所以今天空闲时间就开始折腾一下把闲置的旧电脑主机改成NAS。下面就开始我们今天的瞎折腾。</p>
<h1 style="" id="%E6%95%99%E7%A8%8B">教程</h1>
<h2 style="" id="%E5%87%86%E5%A4%87%E5%B7%A5%E4%BD%9C%EF%BC%9A">准备工作：</h2>
<ul>
 <li>
  <p style=""><span fontsize="" color="rgb(220, 38, 38)" style="color: rgb(220, 38, 38)">一个U盘 容量：</span><span style="font-size: 16px; color: rgb(220, 38, 38)">≥8G&nbsp;</span>（我用的是16G）<span fontsize="" color="rgb(239, 68, 68)" style="color: rgb(239, 68, 68)"> (</span><span style="font-size: 16px; color: rgb(239, 68, 68)">注意：这个U盘以后要一直插在群晖设备上不能拔)</span></p>
 </li>
</ul>
<ul>
 <li>
  <p style="text-align: justify; ; "><span fontsize="" color="rgb(22, 163, 74)" style="color: rgb(22, 163, 74)">需要安装群晖的主机或者笔记本：</span><span fontsize="" color="rgb(239, 68, 68)" style="color: rgb(239, 68, 68)">(至少一块SATA接口硬盘，</span><span style="font-size: 16px; color: rgb(239, 68, 68)">内存: 需要≥ 4GB，</span><span fontsize="" color="rgb(239, 68, 68)" style="color: rgb(239, 68, 68)">此台设备需要插好网线</span><span style="font-size: 16px; color: rgb(239, 68, 68)">。</span><span fontsize="" color="rgb(239, 68, 68)" style="color: rgb(239, 68, 68)">)</span></p>
 </li>
 <li>
  <p style="text-align: justify; ; "><span fontsize="" color="rgb(29, 78, 216)" style="color: rgb(29, 78, 216)">操作电脑一台：</span>要求和安装群晖的设备处于同一个局域网。</p>
 </li>
</ul>
<h2 style="" id="%E5%88%B6%E4%BD%9C%E5%BC%95%E5%AF%BC%E7%9B%98">制作引导盘</h2>
<p style="text-align: justify; ; "><span style="font-size: 16px; color: rgb(51, 51, 51)">写盘工具 和 引导系统镜像 下载地址：</span><a href="https://pan.baidu.com/s/1exxSKXjIat2L7oEZYxIM7w?pwd=mnss" target="_blank"><span style="font-size: 16px; color: rgb(219, 39, 119)">百度网盘</span></a><span style="font-size: 16px; color: rgb(219, 39, 119)"> </span><span style="font-size: 16px; color: rgb(29, 78, 216)"> </span><a href="https://www.123pan.cn/s/NU5TTd-fk79A.html" target="_blank"><span style="font-size: 16px; color: rgb(21, 128, 61)">123网盘</span></a><span style="font-size: 16px; color: rgb(21, 128, 61)">(</span><span style="font-size: 14px; color: rgb(21, 128, 61)">提取码:tkrt</span><span style="font-size: 16px; color: rgb(21, 128, 61)">)</span></p>
<p style=""><span style="font-size: 16px; color: rgb(51, 51, 51)">下载完成之后解压，里面一个是写盘工具，一个是引导系统镜像文件解压包。</span></p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FHS12SV.webp&amp;size=m" width="942px" height="212px" style="display: inline-block"></p>
<p style=""><span style="font-size: 16px; color: rgb(51, 51, 51)">把</span><span style="font-size: 16px; color: rgb(107, 33, 168)">【U盘引导镜像rr-24.2.3.img.zip】</span><span style="font-size: 16px; color: rgb(51, 51, 51)">再次解压出来得到一个U盘引导的</span><span style="font-size: 16px; color: rgb(234, 88, 12)">【rr.img】</span><span style="font-size: 16px; color: rgb(51, 51, 51)">文件。</span></p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F5xcI33.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style=""><span style="font-size: 16px; color: rgb(51, 51, 51)">之后接着把备好的U盘插入电脑中，运行 Rufus 写盘工具，把解压出来的</span><span style="font-size: 16px; color: rgb(234, 88, 12)">【rr.img】</span><span style="font-size: 16px; color: rgb(51, 51, 51)">文件写入到U盘。</span></p>
<p style=""><span style="font-size: 16px; color: rgb(51, 51, 51)">其他都不需要修改，直接选择好你的U盘，之后选着镜像文件</span><span style="font-size: 16px; color: rgb(234, 88, 12)">【rr.img】</span><span style="font-size: 16px; color: rgb(51, 51, 51)">就可以了。</span></p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FCRl9gh.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">选择完成之后点击<span fontsize="" color="rgb(234, 88, 12)" style="color: rgb(234, 88, 12)">【开始】</span>，之后点击<span fontsize="" color="rgb(21, 128, 61)" style="color: rgb(21, 128, 61)">【确定】</span>。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FHImBmS.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">接着就等待写入完成。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F50djrg.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">引导盘写入成功，显示<span fontsize="" color="rgb(22, 163, 74)" style="color: rgb(22, 163, 74)">【准备就绪】</span>之后点击<span fontsize="" color="rgb(190, 24, 93)" style="color: rgb(190, 24, 93)">【关闭】</span>即可。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FT72QqK.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h2 style="" id="%E5%AE%89%E8%A3%85%E7%BE%A4%E6%99%96%E7%B3%BB%E7%BB%9F">安装群晖系统</h2>
<p style="">前面我们制作完成U盘引导之后我们把U盘拔出，插到需要安装群晖的主机或者笔记本当中。</p>
<p style="">记得这个设备是需要把网线插上的，因为我们教程安装的时候是在线编译的，所以需要有网络才行。</p>
<p style="">插入U盘之后重启设备，按下 F12 或 Del键 进入BIOS设置界面（每个品牌的机器进入Bios按键各不相同，请以实际为准）将U盘设置为第一启动项，保存并退出Bios。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FVqDSYb.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">设置完成之后，保存重启。</p>
<p style="">之后直接就进入群晖引导程序，这里不用操作一般会自动默认第一个。</p>
<p style="">我们现在什么都不用管，全让他自动进入。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2Fq4XCkW.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">知道显示这个画面，就表示群晖的系统引导已经加载成功了。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FPD7DlX.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">看到上面这界面，我们就可以用到我们事先准备的另一台电脑。</p>
<p style="">进入上面给我们的IP地址：<span fontsize="" color="rgb(239, 68, 68)" style="color: rgb(239, 68, 68)"><mark data-color="#facc15" style="background-color: #facc15; color: inherit">192.168.3.12:7681</mark></span></p>
<p style="">进入之后会看到这样一个界面。</p>
<p style="text-align: justify; ; "><a href="https://lsky.xuxueli.cn/1ojlee.webp"><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F1ojlee.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></a></p>
<p style="text-align: justify; ; ">然后选择第四项，设置成中文。</p>
<p style="text-align: justify; ; "><a href="https://lsky.xuxueli.cn/MoRdCt.webp"><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FMoRdCt.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></a></p>
<p style="text-align: justify; ; ">选着<span fontsize="" color="rgb(29, 78, 216)" style="color: rgb(29, 78, 216)">【zh_CN】</span>设置成简体中文。</p>
<p style="text-align: justify; ; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FFNw81e.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="text-align: justify; ; ">现在我们界面已经是中文了。</p>
<p style="text-align: justify; ; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FGIEePY.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="text-align: justify; ; ">接着第一步<span fontsize="" color="rgb(234, 88, 12)" style="color: rgb(234, 88, 12)">【选择型号】</span>。</p>
<p style="text-align: justify; ; ">这里我选择的是<span fontsize="" color="rgb(30, 64, 175)" style="color: rgb(30, 64, 175)">【DS920+】</span>，之后回车。</p>
<p style="text-align: justify; ; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FlBQmBa.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="text-align: justify; ; ">来到第二步，选择版本，回车进入。</p>
<p style="text-align: justify; ; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FihgZJR.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="text-align: justify; ; ">直接选择最新版本<span fontsize="" color="rgb(234, 179, 8)" style="color: rgb(234, 179, 8)">【7.2】</span>回车。</p>
<p style="text-align: justify; ; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F7CkKgN.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="text-align: justify; ; ">接着继续按回车确认版本在线编译，然后稍微等待一下。</p>
<p style="text-align: justify; ; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FfQXpuE.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="text-align: justify; ; ">编译完成之后会自动跳转到主菜单，我们已经完成了型号和版本的选择。</p>
<p style="text-align: justify; ; ">现在我们就按照流程进入<span fontsize="" color="rgb(194, 65, 12)" style="color: rgb(194, 65, 12)">【编译引导】</span>。</p>
<p style="text-align: justify; ; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FBlNAWv.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="text-align: justify; ; ">进入编译引导我们这需要等待一下等它编译完成。</p>
<p style="text-align: justify; ; ">这个时间取决于你的设备性能和网速，一般情况几十秒到2分钟左右。</p>
<p style="text-align: justify; ; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F3anKRR.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="text-align: justify; ; ">看到这个画面就证明编译完成了，会自动跳转主菜单。</p>
<p style="text-align: justify; ; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FGGXZu1.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="text-align: justify; ; ">编译完成了我们现在就可以直接选择<span fontsize="" color="rgb(29, 78, 216)" style="color: rgb(29, 78, 216)">【启动】</span>回车，进行安装群晖系统。</p>
<p style="text-align: justify; ; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FxEHvqb.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="text-align: justify; ; ">进入<span fontsize="" color="rgb(34, 197, 94)" style="color: rgb(34, 197, 94)">【启动】</span>之后稍微等待几秒钟就会显示这个界面。</p>
<p style="text-align: justify; ; ">接着我们就可以打开下面给到的群晖系统安装地址，<span fontsize="" color="rgb(250, 204, 21)" style="color: rgb(250, 204, 21)"><mark data-color="#b91c1c" style="background-color: #b91c1c; color: inherit">192.168.3.12:5000</mark></span>。有些设备配置比较低有可能需要几分钟到十分钟才能打开下面给到的群晖地址。</p>
<p style="text-align: justify; ; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FvCLNIr.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="text-align: justify; ; ">现在我们就打开刚刚给我们的群晖安装地址。</p>
<p style="text-align: justify; ; "><span fontsize="" color="rgb(134, 239, 172)" style="color: rgb(134, 239, 172)"><mark data-color="#1e40af" style="background-color: #1e40af; color: inherit">192.168.3.12:5000</mark></span></p>
<p style="text-align: justify; ; ">进入之后我们直接点击<span fontsize="" color="rgb(190, 24, 93)" style="color: rgb(190, 24, 93)">【安装】</span>。</p>
<p style="text-align: justify; ; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F6RSORF.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="text-align: justify; ; ">然后选择第一项，<span fontsize="" color="rgb(251, 146, 60)" style="color: rgb(251, 146, 60)">自动从 Synology 网站下载并安装最新 DSM 7.2.1-69057</span>。</p>
<p style="text-align: justify; ; ">直接点击<span fontsize="" color="rgb(192, 132, 252)" style="color: rgb(192, 132, 252)">【下一步】</span>。</p>
<p style="text-align: justify; ; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FuZxQCi.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="text-align: justify; ; ">接下来会提示你，将删除所有数据。</p>
<p style=""><span fontsize="" color="rgb(22, 163, 74)" style="color: rgb(22, 163, 74)">你的硬盘上的所有数据都将被删除，此操作无法恢复。</span></p>
<p style="">勾选<span fontsize="" color="rgb(220, 38, 38)" style="color: rgb(220, 38, 38)">【我了解这些硬盘上的所有数据都将被删除】</span>。</p>
<p style="">点<span fontsize="" color="rgb(219, 39, 119)" style="color: rgb(219, 39, 119)">【继续】</span>。</p>
<p style="text-align: justify; ; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FLgxnC1.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="text-align: justify; ; ">这里输入你安装的产品型号，这里我安装的是<span fontsize="" color="rgb(21, 128, 61)" style="color: rgb(21, 128, 61)">【DS920+】</span>。</p>
<p style="text-align: justify; ; ">输入<span fontsize="" color="rgb(59, 130, 246)" style="color: rgb(59, 130, 246)">【DS920+】</span>选择<span fontsize="" color="rgb(194, 65, 12)" style="color: rgb(194, 65, 12)">【删除】</span>。</p>
<p style="text-align: justify; ; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2Fhjp5Hz.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="text-align: justify; ; ">之后我们就等待安装完成。</p>
<p style="text-align: justify; ; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F94cdd7.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="text-align: justify; ; ">直到出现这个倒计时界面。</p>
<p style="text-align: justify; ; ">我们就已经安装完成了，但是这个时候我们不用动。</p>
<p style="text-align: justify; ; ">我们继续等待，这个过程需要3-10分钟左右。</p>
<p style="text-align: justify; ; "><a href="https://lsky.xuxueli.cn/rxEgRf.webp"><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FrxEgRf.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></a></p>
<p style="text-align: justify; ; ">这个时候我们安装群晖的主机也会自动重启。</p>
<p style="text-align: justify; ; ">我们也不用管，继续等待。</p>
<p style="text-align: justify; ; ">直到看到这个画面就证明已经OK了！</p>
<p style="text-align: justify; ; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F0yDWJU.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h2 style="" id="%E7%BE%A4%E6%99%96%E7%B3%BB%E7%BB%9F%E8%AE%BE%E7%BD%AE">群晖系统设置</h2>
<p style="text-align: justify; ; ">接下来，我们就可以看到群晖的欢迎页面了。</p>
<p style="text-align: justify; ; ">现在就可以直接点击<span fontsize="" color="rgb(34, 197, 94)" style="color: rgb(34, 197, 94)">【开始】</span>，进入设置页面。</p>
<p style="text-align: justify; ; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FCfbQ7D.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="text-align: justify; ; ">进入设置之后，我们给他设置一下<span fontsize="" color="rgb(220, 38, 38)" style="color: rgb(220, 38, 38)">【设备名称】</span>。</p>
<p style="text-align: justify; ; ">自定义一下<span fontsize="" color="rgb(234, 88, 12)" style="color: rgb(234, 88, 12)">【管理员账户】</span>和<span fontsize="" color="rgb(21, 128, 61)" style="color: rgb(21, 128, 61)">【密码】</span>。</p>
<p style="text-align: justify; ; ">勾选下面的选项，直接点解<span fontsize="" color="rgb(59, 130, 246)" style="color: rgb(59, 130, 246)">【下一步】</span>。</p>
<p style="text-align: justify; ; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FAN1SF7.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="text-align: justify; ; ">这里注意，一定要选择第三个。</p>
<p style="text-align: justify; ; "><span fontsize="" color="rgb(220, 38, 38)" style="color: rgb(220, 38, 38)">√ 当有可用的 DSM 或套件更新时通知我，我会手动安装。</span></p>
<p style="text-align: justify; ; ">因为我们是黑群晖，不能自动更新，如果自动更新我们的系统可能就死机崩了。</p>
<p style="text-align: justify; ; ">然后点击<span fontsize="" color="rgb(21, 128, 61)" style="color: rgb(21, 128, 61)">【下一步】</span>。</p>
<p style="text-align: justify; ; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FxkDPhO.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="text-align: justify; ; ">接下来这一步我们直接选择<span fontsize="" color="rgb(194, 65, 12)" style="color: rgb(194, 65, 12)">【跳过】</span>。</p>
<p style="text-align: justify; ; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FCE9dGw.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="text-align: justify; ; ">选择<span fontsize="" color="rgb(202, 138, 4)" style="color: rgb(202, 138, 4)">【仍然跳过】</span>。</p>
<p style="text-align: justify; ; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FvjU6Xl.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="text-align: justify; ; ">最后这不选择<span fontsize="" color="rgb(220, 38, 38)" style="color: rgb(220, 38, 38)">【提交】</span>。</p>
<p style="text-align: justify; ; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FUz1E0W.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="text-align: justify; ; ">之后我们就成功的进入了群晖的系统页面。</p>
<p style="text-align: justify; ; ">这个验证直接选择<span fontsize="" color="rgb(22, 163, 74)" style="color: rgb(22, 163, 74)">【不用了，谢谢】</span>，之后下一个界面选择<span fontsize="" color="rgb(249, 115, 22)" style="color: rgb(249, 115, 22)">【放弃保护我的账户】</span>。</p>
<p style="text-align: justify; ; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FxlSdPI.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="text-align: justify; ; ">之后我们进入了这个界面，创建存储池和存储空间。</p>
<p style="text-align: justify; ; ">点击<span fontsize="" color="rgb(37, 99, 235)" style="color: rgb(37, 99, 235)">【立即创建】</span>。</p>
<p style="text-align: justify; ; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2Fa220Hv.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="text-align: justify; ; ">点击<span fontsize="" color="rgb(21, 128, 61)" style="color: rgb(21, 128, 61)">【开始】</span>。</p>
<p style="text-align: justify; ; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FmKhA8I.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="text-align: justify; ; ">这里我这台设备暂时只有一个硬盘，所以我这就按照一个硬盘为例。</p>
<p style="text-align: justify; ; ">提醒一下，如果你是两块硬盘的话，在<span fontsize="" color="rgb(220, 38, 38)" style="color: rgb(220, 38, 38)">【Read】</span>部分选择<span fontsize="" color="rgb(21, 128, 61)" style="color: rgb(21, 128, 61)">【Read 1】</span>。</p>
<p style="text-align: justify; ; ">推荐选择第一个<span fontsize="" color="rgb(190, 24, 93)" style="color: rgb(190, 24, 93)">【SHR】</span>，然后点<span fontsize="" color="rgb(244, 114, 182)" style="color: rgb(244, 114, 182)">【下一步】</span>。</p>
<p style="text-align: justify; ; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FtaOiEV.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="text-align: justify; ; ">然后勾选你的硬盘，点<span fontsize="" color="rgb(168, 85, 247)" style="color: rgb(168, 85, 247)">【下一步】</span>。</p>
<p style="text-align: justify; ; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FB7ZCzf.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="text-align: justify; ; ">接下来选择<span fontsize="" color="rgb(96, 165, 250)" style="color: rgb(96, 165, 250)">【跳过硬盘检查】</span>，点<span fontsize="" color="rgb(251, 146, 60)" style="color: rgb(251, 146, 60)">【下一步】</span>。</p>
<p style="text-align: justify; ; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FAu5TRv.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="text-align: justify; ; ">然后点击<span fontsize="" color="rgb(234, 88, 12)" style="color: rgb(234, 88, 12)">【最大化】</span>在继续<span fontsize="" color="rgb(74, 222, 128)" style="color: rgb(74, 222, 128)">【下一步】</span>。</p>
<p style="text-align: justify; ; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FBmQem0.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="text-align: justify; ; ">这里直接选择建议的<span fontsize="" color="rgb(234, 88, 12)" style="color: rgb(234, 88, 12)">【Btrfs】</span>继续<span fontsize="" color="rgb(248, 113, 113)" style="color: rgb(248, 113, 113)">【下一步】</span>。</p>
<p style="text-align: justify; ; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FPSkUeH.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="text-align: justify; ; ">这里直接<span fontsize="" color="rgb(34, 197, 94)" style="color: rgb(34, 197, 94)">【下一步】</span>。</p>
<p style="text-align: justify; ; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FSz8PIV.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="text-align: justify; ; ">下面我们直接选择<span fontsize="" color="rgb(249, 115, 22)" style="color: rgb(249, 115, 22)">【应用】</span>之后<span fontsize="" color="rgb(236, 72, 153)" style="color: rgb(236, 72, 153)">【确定】</span>就可以了。</p>
<p style="text-align: justify; ; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FauV3yh.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="text-align: justify; ; ">这样我们就创建好了我们群晖的存储池。</p>
<p style="text-align: justify; ; ">好了，到了这个画面，就表示我们的所有操作设置基本都完成了。</p>
<p style="text-align: justify; ; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FhOcoDq.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="text-align: justify; ; ">群晖的其他作用大家就慢慢去摸索了，折腾起来吧。</p>
<p style="text-align: justify; ; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FdGkQxi.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="text-align: justify; ; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FJeA5Ab.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="text-align: justify; ; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FcTGDQP.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h1 style="" id="%E7%BB%93%E8%AF%AD">结语</h1>
<p style="text-align: justify; ; ">好了本次教程就结束了，在安装完群晖之后，您已经成功迈入了高效、便捷的数据管理新纪元。</p>
<p style="text-align: justify; ; ">群晖不仅为您提供了强大的存储解决方案，更是您智能家居与多媒体娱乐的中心。</p>
<p style="text-align: justify; ; ">从此，无论是备份重要资料，还是共享家庭照片与视频，都将变得轻而易举。</p>
<p style="text-align: justify; ; ">我们希望这段教程能够助您在数字化生活中更进一步，享受科技带来的无限可能。</p>
<p style="text-align: justify; ; ">希望本次教程对大家有所帮助！创作不易希望大家能多多转发收藏本站！感谢感谢~~！</p>
<p style="">我是阿狸鹿丫，一个业余爱瞎折腾的数码软件爱好者，技术小白。</p>
<p style="text-align: center; ; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=%2Fupload%2Fthe-end.webp&amp;size=m" alt="the-end.webp" width="25%" height="auto" style="display: inline-block"></p>]]></description><guid isPermaLink="false">/archives/m5b3Xuc3</guid><dc:creator>阿狸鹿丫</dc:creator><enclosure url="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FcLtvel.webp&amp;size=m" type="image/jpeg" length="0"/><category>NAS</category><category>推荐</category><category>服务器</category><category>教程</category><category>分享</category><pubDate>Wed, 7 Aug 2024 08:29:49 GMT</pubDate></item><item><title><![CDATA[NAS 守护神 山特TG-BOX850 UPS不间断电源]]></title><link>https://blog.aliluya.com/archives/fINr93QK</link><description><![CDATA[<img src="https://blog.aliluya.com/plugins/feed/assets/telemetry.gif?title=NAS%20%E5%AE%88%E6%8A%A4%E7%A5%9E%20%E5%B1%B1%E7%89%B9TG-BOX850%20UPS%E4%B8%8D%E9%97%B4%E6%96%AD%E7%94%B5%E6%BA%90&amp;url=/archives/fINr93QK" width="1" height="1" alt="" style="opacity:0;">
<p style="text-align: center; ; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FpcXixu.webp&amp;size=m" width="80%" height="auto" style="display: inline-block"></p>
<p style="text-align: center; ; "><span style="font-size: 18px; color: rgb(239, 68, 68)"><strong>如何通过山特TG-BOX850 UPS 保护你的群晖NAS数据安全</strong></span></p>
<div class="html-edited">
 <hao-note class="flat" noicon="haofont hao-icon-dengpao" style="orange">大家好，我是阿狸鹿丫，一个业余爱瞎折腾的数码软件爱好者，技术小白。</hao-note>
</div>
<h1 style="" id="%E5%89%8D%E8%A8%80">前言</h1>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F7Z4hIj.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">最近家里经历了一次意外的断电，这次断电导致我的群晖NAS突然异常关机。</p>
<p style="">虽然幸运的是，硬盘盒中的数据没有丢失，但这种情况也让我意识到数据保护的重要性。</p>
<p style="">在断电情况下，群晖NAS的突然关机不仅可能导致数据丢失，还有可能对硬盘造成损坏。</p>
<p style="">为了防止类似的问题再次发生，我决定入手一台山特TG-BOX850 UPS，来守护我们珍贵的数据安全。</p>
<h1 style="" id="%E9%A9%AC%E4%B8%8A%E8%A1%8C%E5%8A%A8">马上行动</h1>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F5NXOnf.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">在网上寻找各种品牌，各种款式，还有像朋友取经。最后朋友也是推荐了这个UPS行业老大哥，山特！</p>
<p style="">之后经过自己在网上了解，看介绍。最后这款山特TG-BOX850 UPS成了我的首选。</p>
<p style="">它不仅提供了稳定的电力供应，还有足够的备用电池容量来保证在断电情况下的长时间运行。</p>
<p style="">这样即使在突发停电时，UPS也能提供足够的电力，让群晖NAS能够安全地完成关机过程，避免了数据丢失的风险。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FwmZ7iH.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h1 style="" id="ups%E8%BF%9E%E6%8E%A5%E7%BE%A4%E6%99%96">UPS连接群晖</h1>
<p style="">山特TG-BOX850 UPS的安装过程也非常简单。</p>
<p style="">只需将UPS与群晖NAS连接，之后按照下图设置一下就OK了。</p>
<p style="">并确保UPS处于正常工作状态，就能立即开始提供电力保护。</p>
<p style="">除此之外，它还具有过载保护和电压稳定功能，为硬件提供了额外的保障。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2Fj3RGSg.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h1 style="" id="%E7%BB%93%E8%AF%AD">结语</h1>
<p style="">总之，入手一台可靠的UPS对于保护数据安全至关重要。</p>
<p style="">山特TG-BOX850 UPS不仅能够在断电时保护群晖NAS的数据，还能确保系统的稳定性和长时间的安全运行。</p>
<p style="">通过这次的经历，我深刻认识到数据保护的必要性，也为未来的数据安全打下了坚实的基础。</p>
<p style="">我是阿狸鹿丫，一个业余爱瞎折腾的数码软件爱好者，技术小白。</p>
<p style="text-align: center; ; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=%2Fupload%2Fthe-end.webp&amp;size=m" alt="the-end.webp" width="25%" height="auto" style="display: inline-block"></p>]]></description><guid isPermaLink="false">/archives/fINr93QK</guid><dc:creator>阿狸鹿丫</dc:creator><enclosure url="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FEiy2cQ.webp&amp;size=m" type="image/jpeg" length="0"/><category>NAS</category><category>杂谈</category><category>分享</category><pubDate>Mon, 5 Aug 2024 15:16:05 GMT</pubDate></item><item><title><![CDATA[群晖 Docker 部署 FRP 内网穿透]]></title><link>https://blog.aliluya.com/archives/VCayfRbj</link><description><![CDATA[<img src="https://blog.aliluya.com/plugins/feed/assets/telemetry.gif?title=%E7%BE%A4%E6%99%96%20Docker%20%E9%83%A8%E7%BD%B2%20FRP%20%E5%86%85%E7%BD%91%E7%A9%BF%E9%80%8F&amp;url=/archives/VCayfRbj" width="1" height="1" alt="" style="opacity:0;">
<div class="html-edited">
 <hao-note class="flat" noicon="haofont hao-icon-dengpao" style="orange">大家好，我是阿狸鹿丫，一个业余爱瞎折腾的数码软件爱好者，技术小白。</hao-note>
</div>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2FPDDGO-IMG.s3.us-east-005.backblazeb2.com%2F2024-05-21-ttorvooy.png&amp;size=m" alt="2024-05-21-ttorvooy.png" width="100%" height="100%" style="display: inline-block"></p>
<h1 style="" id="%E5%89%8D%E8%A8%80">前言</h1>
<p style="">之前使用的是群晖套件 Frpc 简单，方便。但是套件只能安装一个，最近又入手了一台HK的服务器。所以想着在部署一个Frpc通过两台服务器做穿透。所以只能在Docker部署一个新的Frpc。</p>
<p style="">所以本次教程就记录一下遇到的问题和详细的部署步骤。</p>
<h1 style="" id="%E9%83%A8%E7%BD%B2%E6%95%99%E7%A8%8B">部署教程</h1>
<blockquote>
 <p style="">推荐服务器商：<a href="https://www.crash.work/aff/QQOTBUJV" target="_blank"><strong>破碎工坊云计算</strong></a><strong> </strong>自己也在使用他们的好几台主机。</p>
</blockquote>
<hyperlink-card target="_blank" href="https://www.crash.work/aff/QQOTBUJV" theme="regular" style="margin-top: 0.75em; margin-bottom: 0;"><a href="https://www.crash.work/aff/QQOTBUJV" target="_blank">https://www.crash.work/aff/QQOTBUJV</a></hyperlink-card>
<p style="">如果你的服务器不是做其他用途，可以参考我这一片文章直接通过SSH链接服务器直接命令部署。</p>
<blockquote>
 <p style="">参考文章：<a href="https://blog.aliluya.com/archives/erGlSIEH" target="_blank"><strong>《群晖NAS(无公网IP)通过FRP内网穿透到云服务器》</strong></a></p>
</blockquote>
<hyperlink-card target="_blank" href="https://blog.aliluya.com/archives/erGlSIEH" theme="regular" style="margin-top: 0.75em; margin-bottom: 0;"><a href="https://blog.aliluya.com/archives/erGlSIEH" target="_blank">https://blog.aliluya.com/archives/erGlSIEH</a></hyperlink-card>
<p style="">因为这次我的服务器出了做穿透之外还想着能试用其他用途，所以本次我部署的是通过1panel控制面板的Docker部署服务端。</p>
<p style="">首先把服务器初始化，我选择的是系统版本是<span style="font-size: 14px; color: rgb(4, 15, 67)">Debian-12.0_x64。</span></p>
<h2 style="" id="%E5%AE%89%E8%A3%851panel%E9%9D%A2%E6%9D%BF"><span fontsize="" color="rgb(4, 15, 67)" style="color: rgb(4, 15, 67)">安装1panel面板</span></h2>
<p style=""><span fontsize="" color="rgb(4, 15, 67)" style="color: rgb(4, 15, 67)">之后通过SSH连接服务器，安装一下1panel面板，通过下面命令安装。</span></p>
<p style=""><span fontsize="" color="rgb(4, 15, 67)" style="color: rgb(4, 15, 67)">自行选择对应系统的安装命令：</span></p>
<p style=""><strong>RedHat / CentOS</strong></p>
<pre><code>curl -sSL https://resource.fit2cloud.com/1panel/package/quick_start.sh -o quick_start.sh &amp;&amp; sh quick_start.sh</code></pre>
<p style=""><strong><span fontsize="" color="rgb(4, 15, 67)" style="color: rgb(4, 15, 67)">Debian</span></strong></p>
<pre><code>curl -sSL https://resource.fit2cloud.com/1panel/package/quick_start.sh -o quick_start.sh &amp;&amp; bash quick_start.sh</code></pre>
<p style=""><strong>Ubuntu</strong></p>
<pre><code>curl -sSL https://resource.fit2cloud.com/1panel/package/quick_start.sh -o quick_start.sh &amp;&amp; sudo bash quick_start.sh</code></pre>
<p style=""><strong>openEuler / 其他</strong></p>
<pre><code>第一步：安装 docker
bash &lt;(curl -sSL https://linuxmirrors.cn/docker.sh)

第二步：安装 1Panel
curl -sSL https://resource.fit2cloud.com/1panel/package/quick_start.sh -o quick_start.sh &amp;&amp; sh quick_start.sh</code></pre>
<p style="">这里我系统是<span fontsize="" color="rgb(4, 15, 67)" style="color: rgb(4, 15, 67)">Debian，所以我们使用 Debian 安装 1panel 的命令</span></p>
<p style="">通过自己熟悉的<strong>SSH</strong>工具，使用<strong>Root</strong>用户连接服务器。进入之后直接复制上面的命令回车一键安装。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FX2Zl6Z.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">之后提示安装位置直接回车安装就可以了，想必这安装大家都很熟悉了。就不过多介绍了。按照提示自定义一下端口、账号、密码等等几OK了。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FDh5n7C.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h2 style="" id="%E9%83%A8%E7%BD%B2frps%E6%9C%8D%E5%8A%A1%E7%AB%AF">部署frps服务端</h2>
<p style="">安装好1Panel面板之后，登录到面板。</p>
<p style=""><a href="https://lsky.xuxueli.cn/L6iqEr.webp"><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FL6iqEr.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></a></p>
<p style="">之后进入<span fontsize="" color="rgb(22, 163, 74)" style="color: rgb(22, 163, 74)">【应用商店】</span>往下拉找到<span fontsize="" color="rgb(29, 78, 216)" style="color: rgb(29, 78, 216)">【frp服务端】</span>点击安装。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FttfshP.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">然后在安装界面自定义一下<span fontsize="" color="rgb(220, 38, 38)" style="color: rgb(220, 38, 38)">【账号】</span>和<span fontsize="" color="rgb(30, 64, 175)" style="color: rgb(30, 64, 175)">【密码】</span>，其他都可以保持默认，点击<span fontsize="" color="rgb(219, 39, 119)" style="color: rgb(219, 39, 119)">【确定】</span>进行安装。</p>
<blockquote>
 <p style="">如果想自定义端口号也是可以的，但是要记得别搞混的服务端口和WEB面板端口。
  <br>
  默认的<span fontsize="" color="rgb(234, 179, 8)" style="color: rgb(234, 179, 8)">【7000】</span>是服务端口，<span fontsize="" color="rgb(234, 88, 12)" style="color: rgb(234, 88, 12)">【7500】</span>是WEB面板端口。</p>
</blockquote>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FmJFoYY.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">安装完成之后我们在<span fontsize="" color="rgb(234, 88, 12)" style="color: rgb(234, 88, 12)">【应用商店】</span>已安装里面可以看到，在<span fontsize="" color="rgb(30, 64, 175)" style="color: rgb(30, 64, 175)">【容器】</span>里面也能看到我们的项目。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FDQ8SM2.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FlcZmXQ.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">之后我们进入<span fontsize="" color="rgb(22, 163, 74)" style="color: rgb(22, 163, 74)">【frps】</span>对应的所在目录，找到配置文件。</p>
<p style=""><code>配置文件地址：/opt/1panel/apps/frps/frps/data/frps.toml</code></p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F5bs5xC.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">双击打开配置文件，把里面对应的Token修改成自己想要的。</p>
<blockquote>
 <p style="">这个Token必须于frpc客户端的Token保持一致。</p>
</blockquote>
<p style="">修改完之后点<span fontsize="" color="rgb(22, 163, 74)" style="color: rgb(22, 163, 74)">【确定】</span>保存。</p>
<p style="">之后回去<span fontsize="" color="rgb(190, 24, 93)" style="color: rgb(190, 24, 93)">【应用商店】</span>或者<span fontsize="" color="rgb(251, 146, 60)" style="color: rgb(251, 146, 60)">【容器】</span>重启一下<span fontsize="" color="rgb(21, 128, 61)" style="color: rgb(21, 128, 61)">【frps】</span>。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FwBfpvl.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">重启完成之后，使用<span fontsize="" color="rgb(126, 34, 206)" style="color: rgb(126, 34, 206)">【服务器IP+7500端口】</span>，就可以访问<strong>frps</strong>的WEB板面。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F3G0BZZ.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h2 style="" id="%E9%83%A8%E7%BD%B2frpc%E5%AE%A2%E6%88%B7%E7%AB%AF">部署frpc客户端</h2>
<p style="">接下来我们回到群晖后台，打开<span fontsize="" color="rgb(234, 179, 8)" style="color: rgb(234, 179, 8)">【File Station】</span>文件管理器，进入Docker文件夹下新建一个<span fontsize="" color="rgb(59, 130, 246)" style="color: rgb(59, 130, 246)">【frpc2】</span>文件夹，用于存储Frp客户端配置数据。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FDfaBZt.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">然后再自己的电脑新建一个<code>frpc.txt</code>文档，然后打开把一下内容复制进去。</p>
<pre><code># 服务器地址
serverAddr = "11.22.33.44"
# 服务端端口
serverPort = 7000
# 鉴权方式，默认为token
auth.method = "token"
# 鉴权密钥，与服务端设置必须一致，否则无法连接
auth.token = "Qwy32DlPix"

[[proxies]]
# name 唯一字段，不能和服务器上其他用户的服务名重复。
name = "nas_web_http"
# tcp 协议
type = "tcp"
# 需要穿透出去的服务IP，本地IP地址，如果是本机就127.0.0.1。
localIP = "127.0.0.1"
# 需要穿透出去的服务端口，例如群晖的5000登录端口。
localPort = 5000
# 远程穿透端口，此端口不能和服务器上其他用户重复，也要遵循 frps 服务允许的端口范围。
remotePort = 80

# nas https 后台
[[proxies]]
name = "nas_web_https"
type = "tcp"
localIP = "127.0.0.1"
localPort = 5001
remotePort = 443</code></pre>
<p style="">修改相应的设置，比如服务器地址、token、端口等等。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FvaaZ5Z.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">然后接着把设置好的文档上传到群晖NAS上刚刚创建好的<span fontsize="" color="rgb(126, 34, 206)" style="color: rgb(126, 34, 206)">【frpc2】</span>目录下。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FcvZg5k.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">上传完之后我们进行下一步，打开<span fontsize="" color="rgb(37, 99, 235)" style="color: rgb(37, 99, 235)">【Container Manager】</span>，进入注册表搜索<span fontsize="" color="rgb(22, 163, 74)" style="color: rgb(22, 163, 74)">【frpc】</span>。</p>
<p style="">选择第一个 <code>snowdreamtech/frpc</code> 镜像进行下载。</p>
<blockquote>
 <p style="">如果 latest 不能下载到最新版本，建议大家可以手动选择版本下载。</p>
</blockquote>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FW21Z6s.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">下载完成之后，选择刚刚下载的镜像 <code>snowdreamtech/frpc</code> 点击运行。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FT9Q7qb.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">然后勾上<span fontsize="" color="rgb(253, 186, 116)" style="color: rgb(253, 186, 116)">【启用自动重新启动】</span>，自定义<span fontsize="" color="rgb(21, 128, 61)" style="color: rgb(21, 128, 61)">【容器名称】</span>，点击<span fontsize="" color="rgb(147, 51, 234)" style="color: rgb(147, 51, 234)">【下一步】</span>。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FBlYXgb.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">之后点击<span fontsize="" color="rgb(251, 146, 60)" style="color: rgb(251, 146, 60)">【添加文件】</span>。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FzZxKve.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">把刚刚上传的<code>frpc.txt</code>文件添加进来。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F2WsCI2.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">容器的对应目录是<span fontsize="" color="rgb(239, 68, 68)" style="color: rgb(239, 68, 68)">【/frp/frpc.toml】</span>​这个是固定的不要做任何修改。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F2L2Jcw.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">网络模式选择<span fontsize="" color="rgb(37, 99, 235)" style="color: rgb(37, 99, 235)">【host】</span>，然后直接点击<span fontsize="" color="rgb(236, 72, 153)" style="color: rgb(236, 72, 153)">【下一步】</span>。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FllCL6N.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"> 最后检查一下，如果没什么问题就可以点击<span fontsize="" color="rgb(250, 204, 21)" style="color: rgb(250, 204, 21)">【完成】</span>了。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FBLrF21.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">最后在浏览器中输入Frp的控制面板地址<span fontsize="" color="rgb(147, 51, 234)" style="color: rgb(147, 51, 234)">【服务器IP+7500端口】</span>，查看穿透的对应的端口是否生效。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FSUkgB9.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">如上图所示，穿透的端口已经生效了。只要把你自己的域名解析到你服务器IP上就可以实现通过域名访问家里的群晖NAS了！</p>
<p style="">下面演示效果：</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FegVf0g.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h1 style="" id="%E7%BB%93%E8%AF%AD">结语</h1>
<p style="">这样一来，我就可以通过不同的服务器来穿透。</p>
<p style="">在使用CDN实现以下回源组，设置下负载匀衡，实现多frps对一frpc。</p>
<p style="">还有我的服务器就不单单可以穿透了，利用1panel的面板还能实现其他功能。</p>
<p style="">希望本次教程对大家有所帮助！创作不易希望大家能多多转发收藏本站！感谢感谢~~！</p>
<p style="">我是阿狸鹿丫，一个业余爱瞎折腾的数码软件爱好者，技术小白。</p>
<p style="text-align: center; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=%2Fupload%2Fthe-end.webp&amp;size=m" alt="the-end.webp" width="25%" height="auto" style="display: inline-block"></p>
<p style=""></p>]]></description><guid isPermaLink="false">/archives/VCayfRbj</guid><dc:creator>阿狸鹿丫</dc:creator><enclosure url="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FYArdY2.webp&amp;size=m" type="image/jpeg" length="0"/><category>NAS</category><category>推荐</category><category>服务器</category><category>教程</category><category>分享</category><pubDate>Mon, 29 Jul 2024 02:36:00 GMT</pubDate></item><item><title><![CDATA[批量删除 Cloudflare DNS记录]]></title><link>https://blog.aliluya.com/archives/Cc1xa5LY</link><description><![CDATA[<img src="https://blog.aliluya.com/plugins/feed/assets/telemetry.gif?title=%E6%89%B9%E9%87%8F%E5%88%A0%E9%99%A4%20Cloudflare%20DNS%E8%AE%B0%E5%BD%95&amp;url=/archives/Cc1xa5LY" width="1" height="1" alt="" style="opacity:0;">
<div class="html-edited">
 <hao-note class="flat" noicon="haofont hao-icon-dengpao" style="orange">大家好，我是阿狸鹿丫，一个业余爱瞎折腾的数码软件爱好者，技术小白。</hao-note>
</div>
<h1 style="" id="%E5%89%8D%E8%A8%80">前言</h1>
<p style="text-align: center; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FEdtQH7.webp&amp;size=m" width="50%" height="auto" style="display: inline-block"></p>
<p style="">近期又使用 <strong><span fontsize="" color="rgb(37, 99, 235)" style="color: rgb(37, 99, 235)">$6.7</span></strong> 注册了一个期限 <span fontsize="" color="rgb(234, 179, 8)" style="color: rgb(234, 179, 8)">10年 </span>的 .xyz 域名，然后转到 <strong><span fontsize="" color="rgb(234, 88, 12)" style="color: rgb(234, 88, 12)">Cloudflare</span></strong> 做域名解析。</p>
<blockquote>
 <p style="">如果大家也需要低价域名可以参考以下文章：
  <br>
  <a href="https://blog.aliluya.com/archives/IP3aiS8t" target="_blank"><strong><span fontsize="" color="rgb(190, 24, 93)" style="color: rgb(190, 24, 93)">《超低价域名 十年仅需要 $6.7》</span></strong></a></p>
</blockquote>
<hyperlink-card target="_blank" href="https://blog.aliluya.com/archives/IP3aiS8t" theme="regular" style="margin-top: 0.75em; margin-bottom: 0;"><a href="https://blog.aliluya.com/archives/IP3aiS8t" target="_blank">https://blog.aliluya.com/archives/IP3aiS8t</a></hyperlink-card>
<p style="">但是转入的时候手快点了自动同步以前的DNS记录，之后同步了600多条解析记录，于是就想删除结果发现只能一条一条删除，这要一个一个删除的话 要删到猴年马月.在网上也找到了好几种删除方法。</p>
<p style="">发现最方便的就是这个，创建一个 <strong>API 令牌 </strong>来批量删除。</p>
<blockquote>
 <p style="">下图我已经删除了大部分了才写的教程。</p>
</blockquote>
<p style="text-align: center; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FAOiTvI.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h1 style="" id="%E6%95%99%E7%A8%8B">教程</h1>
<p style="">今天需要用到的就是下面这个网站：</p>
<blockquote>
 <p style=""><strong><span fontsize="" color="rgb(248, 113, 113)" style="color: rgb(248, 113, 113)">Edit/Delete Cloudflare DNS Quickly</span></strong>
  <br>
  批量删除DNS网址：<a href="https://www.coinwetalk.com/cloudflare-dns-fast-simple-bulk/" target="_blank"><strong>访问网址</strong></a></p>
</blockquote>
<hyperlink-card target="_blank" href="https://www.coinwetalk.com/cloudflare-dns-fast-simple-bulk/" theme="regular" style="margin-top: 0.75em; margin-bottom: 0;"><a href="https://www.coinwetalk.com/cloudflare-dns-fast-simple-bulk/" target="_blank">https://www.coinwetalk.com/cloudflare-dns-fast-simple-bulk/</a></hyperlink-card>
<p style="">进入之后点击<strong><span fontsize="" color="rgb(22, 163, 74)" style="color: rgb(22, 163, 74)">【API Create】</span></strong>进入 <strong><span fontsize="" color="rgb(234, 88, 12)" style="color: rgb(234, 88, 12)">Cloudflare </span></strong>创建 <strong><span fontsize="" color="rgb(37, 99, 235)" style="color: rgb(37, 99, 235)">API 令牌</span></strong>。</p>
<p style="text-align: center; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2Fdz7oUO.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">接下来就创建一个API用来批量删除DNS记录。</p>
<p style="">点击<span fontsize="" color="rgb(168, 85, 247)" style="color: rgb(168, 85, 247)">【创建令牌】</span></p>
<p style="text-align: center; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FjacQh0.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">进入之后拉到网页最下面，选择<span fontsize="" color="rgb(22, 163, 74)" style="color: rgb(22, 163, 74)">自定义令牌</span>，点击<span fontsize="" color="rgb(37, 99, 235)" style="color: rgb(37, 99, 235)">【开始使用】</span>。</p>
<p style="">点击开始使用之后进入创建界面，参考下图设置。</p>
<p style="text-align: center; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FiRJ7Si.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">设置好之后拉到最下面点击<strong><span fontsize="" color="rgb(248, 113, 113)" style="color: rgb(248, 113, 113)">【继续以显示摘要】</span>。</strong></p>
<p style="text-align: center; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FCnPW1h.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">接下来我们就成功的创建了一个批量删除DNS的API。</p>
<p style="">复制创建好的<span fontsize="" color="rgb(29, 78, 216)" style="color: rgb(29, 78, 216)">【Token】</span>。</p>
<p style="text-align: center; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F6jGTWB.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">之后把<span fontsize="" color="rgb(37, 99, 235)" style="color: rgb(37, 99, 235)">【Token】</span>粘贴到刚刚打开的批量删除工具的<span fontsize="" color="rgb(234, 88, 12)" style="color: rgb(234, 88, 12)">【API Key】</span>中。</p>
<p style="text-align: center; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FAZbI5l.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">然后下面的<span fontsize="" color="rgb(126, 34, 206)" style="color: rgb(126, 34, 206)">【Zone ID】</span>就要返回 <strong><span fontsize="" color="rgb(234, 88, 12)" style="color: rgb(234, 88, 12)">Cloudflare </span></strong>主页。</p>
<p style="">点击<span fontsize="" color="rgb(234, 179, 8)" style="color: rgb(234, 179, 8)">【网站】</span>选择对应需要删除DNS的域名。</p>
<p style="text-align: center; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FHFds2o.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">在接着拉到网页最面找到<span fontsize="" color="rgb(219, 39, 119)" style="color: rgb(219, 39, 119)">【API】</span>复制<span fontsize="" color="rgb(37, 99, 235)" style="color: rgb(37, 99, 235)">【区域ID】</span>。</p>
<p style="text-align: center; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FxR83AI.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">回到工具网站，粘贴到<span fontsize="" color="rgb(126, 34, 206)" style="color: rgb(126, 34, 206)">【Zone ID】</span>。</p>
<p style="">然后直接点击<strong><span fontsize="" color="rgb(59, 130, 246)" style="color: rgb(59, 130, 246)">【Fetch Records】</span></strong>进行获取DNS记录。</p>
<p style="">获取之后 全选 解析记录，点击<strong><span fontsize="" color="rgb(220, 38, 38)" style="color: rgb(220, 38, 38)">【Delete Selected Records</span></strong></p>
<p style=""><strong><span fontsize="" color="rgb(220, 38, 38)" style="color: rgb(220, 38, 38)">】</span></strong>进行批量删除操作。</p>
<p style="text-align: center; "><a href="https://lsky.xuxueli.cn/b0qmfd.webp"><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2Fb0qmfd.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></a></p>
<p style="">等待片刻，就会显示以下提示：<span fontsize="" color="rgb(21, 128, 61)" style="color: rgb(21, 128, 61)">【记录ID xxxx 已经被成功删除。】</span></p>
<blockquote>
 <p style=""><strong><span fontsize="" color="rgb(21, 128, 61)" style="color: rgb(21, 128, 61)">Record lD xxxxxxxxxxxxxxxxx has been successfully deleted.</span></strong></p>
</blockquote>
<p style="text-align: center; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FS4KCqA.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">因为每次获取DNS记录最多只能获取100条记录，所以删除完毕之后我们需要继续点击<strong><span fontsize="" color="rgb(59, 130, 246)" style="color: rgb(59, 130, 246)">【Fetch Records】</span></strong>再次获取未删除的记录。</p>
<p style="text-align: center; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FjnMhws.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">循环这个操作，直到把所有记录删除完毕就OK了！</p>
<p style="text-align: center; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FqgpTIN.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h1 style="" id="%E7%BB%93%E6%9D%9F">结束</h1>
<p style="">这样就可以实现方便的批量删除，不需要一个一个删除了。</p>
<p style="">之前想想就烦，没有这个方法需要一个一个删除，我都懒得理了直接不想删除了！现在这个方法操作简单，使用方便快捷。</p>
<p style="">希望本次教程对大家有所帮助！创作不易希望大家能多多转发收藏本站！感谢感谢~~！</p>
<p style="">我是阿狸鹿丫，一个业余爱瞎折腾的数码软件爱好者，技术小白。</p>
<p style="text-align: center; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=%2Fupload%2Fthe-end.webp&amp;size=m" alt="the-end.webp" width="25%" height="auto" style="display: inline-block"></p>]]></description><guid isPermaLink="false">/archives/Cc1xa5LY</guid><dc:creator>阿狸鹿丫</dc:creator><enclosure url="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FtLEbbR.webp&amp;size=m" type="image/jpeg" length="0"/><category>教程</category><category>分享</category><pubDate>Thu, 25 Jul 2024 05:08:00 GMT</pubDate></item><item><title><![CDATA[群晖 Docker Compose 部署 Umami]]></title><link>https://blog.aliluya.com/archives/To2587Qn</link><description><![CDATA[<img src="https://blog.aliluya.com/plugins/feed/assets/telemetry.gif?title=%E7%BE%A4%E6%99%96%20Docker%20Compose%20%E9%83%A8%E7%BD%B2%20Umami&amp;url=/archives/To2587Qn" width="1" height="1" alt="" style="opacity:0;">
<div class="html-edited">
 <hao-note class="flat" noicon="haofont hao-icon-dengpao" style="orange">大家好，我是阿狸鹿丫，一个业余爱瞎折腾的数码软件爱好者，技术小白。</hao-note>
</div>
<h1 style="" id="%E5%89%8D%E8%A8%80">前言</h1>
<blockquote>
 <p style="">本教程基于群晖的NAS设备Docker功能进行搭建，采用 umami + MySQL 实例作为演示。</p>
</blockquote>
<p style="">Aliluya Blog 一直使用第三方统计平台 51.La 还有 百度统计，虽然功能都很强大，但数据并不存储在本地。</p>
<p style="">而今天介绍的 Umami 是一款自部署的统计平台，它使用 MySQL 或 PostgreSQL 作为数据库，可以完全掌控数据的存储和使用，保护您的数据隐私。</p>
<h1 style="" id="umami%E4%BB%8B%E7%BB%8D"><span fontsize="" color="rgb(47, 47, 47)" style="color: rgb(47, 47, 47)">Umami介绍</span></h1>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FY9SiUE.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style=""><span fontsize="" color="rgb(47, 47, 47)" style="color: rgb(47, 47, 47)">Umami 是一款用 Node 编写的开源、注重隐私且轻量级的 Web 分析服务。</span></p>
<p style="">Umami 是 Google Analytics 的更好替代方案 ，因为它让您完全控制您的数据，并且不会侵犯用户的隐私。</p>
<p style="">Umami 的界面简洁明了，重点数据如页面查看次数、来源网站、设备类型和浏览器等都清晰展示在前面，使你能迅速找到所需信息。</p>
<p style="text-align: start; ; line-height: 20px">此外，Umami 支持多站点管理，你可以在一个面板上查看和管理多个网站的统计数据。它还允许你创建公共链接来分享统计信息，无需向他人提供账号密码。</p>
<p style="">有多种不同的方法来安装 Umami。</p>
<ul>
 <li>
  <p style=""><strong>从源代码安装：</strong>从官方<strong> </strong><a href="https://github.com/umami-software/umami">GitHub</a> 获取代码并自行构建应用程序。</p>
 </li>
 <li>
  <p style=""><strong>使用 Docker compose</strong>：使用 Docker 容器 <code>Docker Compose</code>部署。</p>
 </li>
 <li>
  <p style=""><strong>使用 Docker 映像</strong>：下载预先构建的 Docker 映像部署。</p>
 </li>
</ul>
<blockquote>
 <p style="">详细的安装方法也可以浏览官方文档：<a href="https://umami.is/docs" target="_blank">https://umami.is/docs</a></p>
</blockquote>
<hyperlink-card target="_blank" href="https://umami.is/docs" theme="regular" style="margin-top: 0.75em; margin-bottom: 0;"><a href="https://umami.is/docs" target="_blank">https://umami.is/docs</a></hyperlink-card>
<h1 style="" id="%E9%83%A8%E7%BD%B2%E6%95%99%E7%A8%8B">部署教程</h1>
<p style=""><span fontsize="" color="rgb(47, 47, 47)" style="color: rgb(47, 47, 47)">Umami 的部署非常简单快捷，在本文中我们将介绍如何使用 Docker Compose 进行搭建，部署的是Mysql版本。</span></p>
<blockquote>
 <p style="">Umami Mysql版本镜像：<strong><span fontsize="" color="rgb(220, 38, 38)" style="color: rgb(220, 38, 38)">ghcr.io/umami-software/umami:mysql-latest</span></strong></p>
</blockquote>
<h2 style="" id="%E5%88%9B%E5%BB%BA%E6%96%87%E4%BB%B6%E5%A4%B9">创建文件夹</h2>
<p style=""><span style="font-size: 16px; color: rgb(51, 51, 51)">首先进入群晖后台，打开【</span><span style="font-size: 16px; color: rgb(202, 138, 4)">File Station</span><span style="font-size: 16px; color: rgb(51, 51, 51)">】在 【</span><span style="font-size: 16px; color: rgb(29, 78, 216)">docker</span><span style="font-size: 16px; color: rgb(51, 51, 51)">】 目录下创建 【</span><span style="font-size: 16px; color: rgb(22, 163, 74)">Umami</span><span style="font-size: 16px; color: rgb(51, 51, 51)">】 文件夹，如图所示。</span></p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FH0dXKf.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h2 style="" id="docker%E5%88%9B%E5%BB%BA%E9%A1%B9%E7%9B%AE">Docker创建项目</h2>
<p style="">建立好文件夹之后，打开【<span fontsize="" color="rgb(220, 38, 38)" style="color: rgb(220, 38, 38)">Container Manager</span>】选择项目。</p>
<p style="">新增项目按照下图所示填写好对应的 【<span fontsize="" color="rgb(147, 51, 234)" style="color: rgb(147, 51, 234)">docker compose</span>】<strong> </strong>命令。</p>
<pre><code>version: '3'
services:
  umami:
    image: ghcr.io/umami-software/umami:mysql-latest
    ports:
      - "3000:3000"
    environment:
      DATABASE_URL: mysql://root:123456@192.168.31.4:3306/umami
      DATABASE_TYPE: mysql
      HASH_SALT: AUVNRgG3joHoWkcvijPkG3K9
    restart: always
</code></pre>
<ul>
 <li>
  <p style=""><code>DATABASE_URL</code> ：对应的是数据库格式如下</p>
 </li>
 <li>
  <p style=""><code>mysql://账号:密码@数据库IP:3306/数据库名称</code></p>
 </li>
 <li>
  <p style=""><code>HASH_SALT</code>：唯一值的随机字符串，可以使用随机密码工具生成。</p>
 </li>
 <li>
  <p style="">生成工具链接：<a href="https://tool.aliluya.com/token-generator?length=24" target="_blank"><strong>Aliluya Tool</strong></a></p>
 </li>
</ul>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2Feryvw7.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">设置好之后一直点击【<span fontsize="" color="rgb(29, 78, 216)" style="color: rgb(29, 78, 216)">下一步</span>】，项目直接完成启动开始拉取镜像。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FYG6jaq.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">拉取完成稍等片刻，容器启动完成就基本搭建好了。</p>
<p style=""><a href="https://lsky.xuxueli.cn/z3Wxes.webp"><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2Fz3Wxes.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></a></p>
<h1 style="" id="umami%E8%AE%BE%E7%BD%AE">Umami设置</h1>
<p style="">现在我们可以直接通过 【<span fontsize="" color="rgb(220, 38, 38)" style="color: rgb(220, 38, 38)">群晖本地IP+3000端口</span>】 直接能访问到我们的Umami主页。</p>
<p style="">进入主页后输入项目默认的账号密码登录。</p>
<blockquote>
 <p style=""><strong><span fontsize="" color="rgb(126, 34, 206)" style="color: rgb(126, 34, 206)">账号：admin</span></strong></p>
 <p style=""><strong><span fontsize="" color="rgb(126, 34, 206)" style="color: rgb(126, 34, 206)">密码：umami</span></strong></p>
</blockquote>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FATo7Yi.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">登录进来之后，我们点击右上角的【<span fontsize="" color="rgb(21, 128, 61)" style="color: rgb(21, 128, 61)">小地球</span>】设置一下网站【<span fontsize="" color="rgb(220, 38, 38)" style="color: rgb(220, 38, 38)">中文</span>】。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FOngyse.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">接下来主页点击【<span fontsize="" color="rgb(29, 78, 216)" style="color: rgb(29, 78, 216)">去设置</span>】进入我们网站的添加界面。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FgWE8Mw.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">点右上角【<span fontsize="" color="rgb(185, 28, 28)" style="color: rgb(185, 28, 28)">添加网站</span>】把需要统计的网站名字和域名填写好，点击【<span fontsize="" color="rgb(236, 72, 153)" style="color: rgb(236, 72, 153)">保存</span>】。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FpYQMAm.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">添加成功后点击【<span fontsize="" color="rgb(234, 88, 12)" style="color: rgb(234, 88, 12)">编辑</span>】。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FwBdYKp.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">进到编辑界面，点击【<span fontsize="" color="rgb(202, 138, 4)" style="color: rgb(202, 138, 4)">跟踪代码</span>】获取我们需要添加到网站的统计代码。</p>
<p style=""><span fontsize="" color="rgb(77, 77, 77)" style="color: rgb(77, 77, 77)">这里你们的应该显示的还是局域网 </span><code>IP</code>地址<span fontsize="" color="rgb(77, 77, 77)" style="color: rgb(77, 77, 77)">，因为我把 Umami 通过【</span><span fontsize="" color="rgb(249, 115, 22)" style="color: rgb(249, 115, 22)">Lucky</span><span fontsize="" color="rgb(77, 77, 77)" style="color: rgb(77, 77, 77)">】做了反向代理，所以我代码里的显示的是域名。</span></p>
<p style=""><span fontsize="" color="rgb(77, 77, 77)" style="color: rgb(77, 77, 77)">你们也可以直接把项目做个反代</span><span style="font-size: 16px; color: rgb(77, 77, 77)">，之后用域名访问。</span></p>
<ul>
 <li>
  <p style=""><span style="font-size: 16px; color: rgb(77, 77, 77)">详细的可以参考一下文章：</span></p>
 </li>
</ul>
<blockquote>
 <p style=""><strong>Lucky反向代理教程：</strong><a href="https://blog.aliluya.com/archives/GzxQ6QUf" target="_blank"><strong>《群晖Nas部署Lucky实现远程访问》</strong></a></p>
</blockquote>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F1tfLZx.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">复制好【<span fontsize="" color="rgb(29, 78, 216)" style="color: rgb(29, 78, 216)">跟踪代码</span>】添加到对应的网站代码中。</p>
<p style="">添加完成之后就可以成功统计网站的数据了。</p>
<p style=""><span fontsize="" color="rgb(25, 27, 31)" style="color: rgb(25, 27, 31)">访问对应的网站就会有数据统计进来，保存到数据库了。</span></p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FNfqRVh.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h1 style="" id="%E7%BB%93%E6%9D%9F">结束</h1>
<p style="">Umami 是一款非常出色的访问统计程序，它能够精准分析访客访问的具体页面和停留时间，帮助我们了解他们的浏览偏好。</p>
<p style="text-align: start; ; line-height: 20px">官方提供了多种部署方式，使得 Umami 成为一款非常实用的网站访问分析工具。</p>
<p style="text-align: start; ; line-height: 20px">我对 Umami 的设置和部署过程感到非常惊讶。之前我一直使用百度统计和 51.LA，相比之下，这些第三方服务显得繁琐且复杂。而 Umami 则以其简洁、清爽的界面和方便的操作，让我体验到了截然不同的统计体验。</p>
<p style="">希望本次教程对大家有所帮助！创作不易希望大家能多多转发收藏本站！感谢感谢~~！</p>
<p style="">我是阿狸鹿丫，一个业余爱瞎折腾的数码软件爱好者，技术小白。</p>
<p style="text-align: center; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=%2Fupload%2Fthe-end.webp&amp;size=m" alt="the-end.webp" width="25%" height="auto" style="display: inline-block"></p>
<p style=""></p>
<p style=""></p>]]></description><guid isPermaLink="false">/archives/To2587Qn</guid><dc:creator>阿狸鹿丫</dc:creator><enclosure url="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FpguVII.webp&amp;size=m" type="image/jpeg" length="0"/><category>NAS</category><category>推荐</category><category>建站</category><category>教程</category><pubDate>Mon, 22 Jul 2024 09:56:00 GMT</pubDate></item><item><title><![CDATA[Aliluya Home 更换新主页]]></title><link>https://blog.aliluya.com/archives/9ZaPXcfy</link><description><![CDATA[<img src="https://blog.aliluya.com/plugins/feed/assets/telemetry.gif?title=Aliluya%20Home%20%E6%9B%B4%E6%8D%A2%E6%96%B0%E4%B8%BB%E9%A1%B5&amp;url=/archives/9ZaPXcfy" width="1" height="1" alt="" style="opacity:0;">
<h1 style="" id="%E6%97%A7%E6%AC%BE%E5%AF%BC%E8%88%AA%E9%A1%B5">旧款导航页</h1>
<p style="">之前一直使用<span style="font-size: 17.3333px; color: rgb(255, 255, 255)"> </span><a rel="nofollow" href="https://home.nange.cn/" target="_blank">Nange</a> 大佬的个人主页<span style="font-size: 16px; color: rgb(31, 35, 40)">、导航页</span>，简洁、美观很不错。</p>
<p style="">使用了很久了，自己也是很喜欢的。未来可能还用来做其他站的导航页。</p>
<blockquote>
 <p style="">GitHub项目地址：<a href="https://github.com/xOS/Nange" target="_blank">https://github.com/xOS/Nange</a></p>
</blockquote>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FzHs4Si.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h1 style="" id="%E6%96%B0%E6%AC%BE%E4%B8%BB%E9%A1%B5">新款主页</h1>
<p style="">随后慢慢接触到另一个大佬 <a href="https://zhheo.com/" target="_blank">张洪Heo</a> 的Blog，作者的项目都很不错，很值得我们小白借鉴学习。</p>
<p style="">无意中也发现作者的主页，然后瞬间就喜欢上了这一款主页。</p>
<p style="">然后非常开心的是，作者也把他的个人主页项目在GitHub上分享出来了，这是一个接近Apple风格的个人主页，二话不说直接下载项目使用。</p>
<p style="">这是一款纯静态 HTML+CSS+JS 的项目，把里面相关的信息修改一下就可以自己使用了。在这要感谢作者 <a href="https://zhheo.com/" target="_blank">张洪Heo</a> 的无私分享。</p>
<blockquote>
 <p style="">GitHub项目地址：<a href="https://github.com/zhheo/heoweb" target="_blank">https://github.com/zhheo/heoweb</a></p>
</blockquote>
<h1 style="" id="%E4%B8%BB%E9%A1%B5%E9%A2%84%E8%A7%88">主页预览</h1>
<p style=""><strong>Aliluya Home：</strong><a href="https://www.aliluya.com/" target="_blank"><strong>https://www.aliluya.com/</strong></a></p>
<hyperlink-card target="_blank" href="https://www.aliluya.com/" theme="regular" style="margin-top: 0.75em; margin-bottom: 0;"><a href="https://www.aliluya.com/" target="_blank">https://www.aliluya.com/</a></hyperlink-card>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2Fr4v4sX.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FMbkyEj.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FzKPorR.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F3I6s9T.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style=""></p>
<p style=""></p>]]></description><guid isPermaLink="false">/archives/9ZaPXcfy</guid><dc:creator>阿狸鹿丫</dc:creator><enclosure url="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F8Jx9B8.webp&amp;size=m" type="image/jpeg" length="0"/><category>建站</category><category>杂谈</category><category>源码</category><category>分享</category><pubDate>Sun, 21 Jul 2024 10:08:00 GMT</pubDate></item><item><title><![CDATA[图床使用 PicList + Lsky Pro 实现双重压缩]]></title><link>https://blog.aliluya.com/archives/0YcrfMA2</link><description><![CDATA[<img src="https://blog.aliluya.com/plugins/feed/assets/telemetry.gif?title=%E5%9B%BE%E5%BA%8A%E4%BD%BF%E7%94%A8%20PicList%20%2B%20Lsky%20Pro%20%E5%AE%9E%E7%8E%B0%E5%8F%8C%E9%87%8D%E5%8E%8B%E7%BC%A9&amp;url=/archives/0YcrfMA2" width="1" height="1" alt="" style="opacity:0;">
<div class="html-edited">
 <hao-note class="flat" noicon="haofont hao-icon-dengpao" style="orange">大家好，我是阿狸鹿丫，一个业余爱瞎折腾的数码软件爱好者，技术小白。</hao-note>
</div>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FfM0eCB.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h1 style="" id="%E5%89%8D%E8%A8%80">前言</h1>
<p style="">一直以来blog的图片都是直接通过截图之后快捷粘贴到文章当中实现自动上传到图床的。</p>
<p style="">加上我的图床也设置了水印功能，大家也知道lsky 兰空图床 设置动态水印会使原本的图片大小会增加。</p>
<p style="">导致图片多得情况下加载很慢很慢...难受！！手动去利用工具压缩之后再上传自己又嫌麻烦！！</p>
<p style="">所以就请教了大佬 <strong>UPToz</strong>，大佬就把他的方法告诉了我。所以我就按照他的方式直接复制粘贴过来使用。图片体积大大的降低很多。访问速度大幅度的提高！</p>
<ul>
 <li>
  <p style="">大佬原文：<a href="https://blog.uptoz.cn/archives/7qIvq2ip" target="_blank">《使用 PicList + Lsky Pro 对图片进行双重压缩》</a></p>
 </li>
</ul>
<hyperlink-card target="_blank" href="https://blog.uptoz.cn/archives/7qIvq2ip" theme="regular" style="margin-top: 0.75em; margin-bottom: 0;"><a href="https://blog.uptoz.cn/archives/7qIvq2ip" target="_blank">https://blog.uptoz.cn/archives/7qIvq2ip</a></hyperlink-card>
<h1 style="" id="%E8%AE%BE%E7%BD%AE%E6%95%99%E7%A8%8B">设置教程</h1>
<p style="">需要提前安装好 PicList 客户端和 Lsky Pro 兰空图床。</p>
<ul>
 <li>
  <p style="">PicList下载地址：<a href="https://piclist.cn/" target="_blank">https://piclist.cn/</a></p>
 </li>
</ul>
<hyperlink-card target="_blank" href="https://piclist.cn/" theme="regular" style="margin-top: 0.75em; margin-bottom: 0;"><a href="https://piclist.cn/" target="_blank">https://piclist.cn/</a></hyperlink-card>
<ul>
 <li>
  <p style="">兰空图床部署参考：<a href="https://blog.aliluya.com/archives/1715335455746" target="_blank">《部署兰空图床 lsky pro》</a></p>
 </li>
</ul>
<hyperlink-card target="_blank" href="https://blog.aliluya.com/archives/1715335455746" theme="regular" style="margin-top: 0.75em; margin-bottom: 0;"><a href="https://blog.aliluya.com/archives/1715335455746" target="_blank">https://blog.aliluya.com/archives/1715335455746</a></hyperlink-card>
<h2 style="" id="%E5%85%B0%E7%A9%BA%E5%9B%BE%E5%BA%8A%E8%AE%BE%E7%BD%AE">兰空图床设置</h2>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FB2Y8L6.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">使用超级管理员用户登录兰空图床后台，在<span fontsize="" color="rgb(220, 38, 38)" style="color: rgb(220, 38, 38)">【系统设置】</span>内的<span fontsize="" color="rgb(22, 163, 74)" style="color: rgb(22, 163, 74)">【控制】</span>模块，启用<span fontsize="" color="rgb(29, 78, 216)" style="color: rgb(29, 78, 216)">【是否启用接口】</span>这项配置，然后点击<span fontsize="" color="rgb(234, 88, 12)" style="color: rgb(234, 88, 12)">【保存】</span>。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FHPb5ix.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">然后进入<span fontsize="" color="rgb(37, 99, 235)" style="color: rgb(37, 99, 235)">【角色组】</span>，给对应的角色组点击<span fontsize="" color="rgb(248, 113, 113)" style="color: rgb(248, 113, 113)">【编辑】</span>。</p>
<p style="">设置一下<span fontsize="" color="rgb(236, 72, 153)" style="color: rgb(236, 72, 153)">【图片保存质量】</span>设置<span fontsize="" color="rgb(107, 33, 168)" style="color: rgb(107, 33, 168)">【75】</span>之后<span fontsize="" color="rgb(251, 146, 60)" style="color: rgb(251, 146, 60)">【图片转换格式】</span>设置成<span fontsize="" color="rgb(154, 52, 18)" style="color: rgb(154, 52, 18)">【webp】</span>，然后点击<span fontsize="" color="rgb(147, 51, 234)" style="color: rgb(147, 51, 234)">【确认保存】</span>。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2Fsuhnco.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h3 style="" id="token%E8%8E%B7%E5%8F%96">Token获取</h3>
<p style="">使用软件<span fontsize="" color="rgb(234, 88, 12)" style="color: rgb(234, 88, 12)">【ApiPost】</span>或者你比较熟悉的API调试工具。</p>
<p style="">这里我自己使用的是<span fontsize="" color="rgb(251, 146, 60)" style="color: rgb(251, 146, 60)">【ApiPost】</span>，打开之后选着<span fontsize="" color="rgb(21, 128, 61)" style="color: rgb(21, 128, 61)">【调试】</span>然后新建一个API请求接口来获取兰空图床的API Token，请求方式选择<span fontsize="" color="rgb(234, 88, 12)" style="color: rgb(234, 88, 12)">【POST​】</span>。</p>
<p style="">POST地址在你的兰空图床后台<span fontsize="" color="rgb(30, 64, 175)" style="color: rgb(30, 64, 175)">【接口】</span>中获取。我这里演示使用的是：<span fontsize="" color="rgb(21, 128, 61)" style="color: rgb(21, 128, 61)">http://192.168.31.4:18880/api/v1/tokens​</span></p>
<p style="">这里需要根据自己的图床地址将 <span fontsize="" color="rgb(29, 78, 216)" style="color: rgb(29, 78, 216)">http://192.168.31.4:18880</span> 替换成你自己地。</p>
<p style="">其中 <strong><span fontsize="" color="rgb(220, 38, 38)" style="color: rgb(220, 38, 38)">/api/v1/tokens</span></strong>​ 为生成Token的固定路径不可更改。</p>
<p style="">然后选择<span fontsize="" color="rgb(219, 39, 119)" style="color: rgb(219, 39, 119)">【Header】</span>设置<span style="font-size: 14px; color: rgb(0, 0, 0)">公共请求，添加参数</span><span style="font-size: 14px; color: rgb(239, 68, 68)">【Accept】</span><span style="font-size: 14px; color: rgb(0, 0, 0)">值为</span><span style="font-size: 14px; color: rgb(234, 179, 8)">【application/json​】</span><span style="font-size: 14px; color: rgb(0, 0, 0)">。</span></p>
<p style=""><a href="https://lsky.xuxueli.cn/4sXbOd.webp"><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F4sXbOd.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></a></p>
<p style="">然后选择<span fontsize="" color="rgb(59, 130, 246)" style="color: rgb(59, 130, 246)">【Bady】</span>下面的<span fontsize="" color="rgb(219, 39, 119)" style="color: rgb(219, 39, 119)">【form-data】</span>。</p>
<p style="">之后添加两个参数:</p>
<p style="">参数名：<code>email​ </code> 值：<strong><span fontsize="" color="rgb(161, 98, 7)" style="color: rgb(161, 98, 7)">aliluya868@gmail.com </span></strong></p>
<p style="">参数名：<code>password​ </code> 值：<strong><span fontsize="" color="rgb(192, 132, 252)" style="color: rgb(192, 132, 252)">aliluya123456</span></strong></p>
<blockquote>
 <p style=""><span fontsize="" color="rgb(161, 98, 7)" style="color: rgb(161, 98, 7)">aliluya868@gmail.com </span>换成自己的兰空图床账号</p>
 <p style=""><span fontsize="" color="rgb(192, 132, 252)" style="color: rgb(192, 132, 252)">aliluya123456</span> 换成自己兰空图床密码</p>
</blockquote>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FMFhUec.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">最后设置完成之后检查清楚没问题之后就可以直接点击<span fontsize="" color="rgb(239, 68, 68)" style="color: rgb(239, 68, 68)">【发送】</span>。</p>
<p style="">如果接口参数没有问题，将会返回一个<span fontsize="" color="rgb(21, 128, 61)" style="color: rgb(21, 128, 61)">Token</span>。</p>
<p style="">请将此<span fontsize="" color="rgb(234, 88, 12)" style="color: rgb(234, 88, 12)">Token</span>复制并保存，以备后续使用。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FvJkuVg.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h2 style="" id="piclist%E8%AE%BE%E7%BD%AE">PicList设置</h2>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FGEXLma.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">在<span fontsize="" color="rgb(21, 128, 61)" style="color: rgb(21, 128, 61)">【PicList】</span>中选择<span fontsize="" color="rgb(251, 146, 60)" style="color: rgb(251, 146, 60)">【图床】</span>下的<span fontsize="" color="rgb(59, 130, 246)" style="color: rgb(59, 130, 246)">【Lsky】</span>，然后修改默认配置或创建一个新的配置。</p>
<p style=""><span fontsize="" color="rgb(22, 163, 74)" style="color: rgb(22, 163, 74)">【图床配置名】</span>自定义。</p>
<p style=""><span fontsize="" color="rgb(96, 165, 250)" style="color: rgb(96, 165, 250)">【设定版本】</span>选择与你安装的兰空图床版本相对应的选项。</p>
<p style=""><span fontsize="" color="rgb(248, 113, 113)" style="color: rgb(248, 113, 113)">【设定主机】</span>填写兰空图床的部署地址，可以使用域名。</p>
<p style=""><span fontsize="" color="rgb(236, 72, 153)" style="color: rgb(236, 72, 153)">【设定Token】</span>输入在<span fontsize="" color="rgb(249, 115, 22)" style="color: rgb(249, 115, 22)">【ApiPost】</span>中保存的<span fontsize="" color="rgb(34, 197, 94)" style="color: rgb(34, 197, 94)">Token</span>。前面加上<span fontsize="" color="rgb(202, 138, 4)" style="color: rgb(202, 138, 4)">Bearer</span>。
 <br>
 <span fontsize="" color="rgb(239, 68, 68)" style="color: rgb(239, 68, 68)">（注意【Bearer】后面要有一个空格）</span></p>
<p style=""><span fontsize="" color="rgb(168, 85, 247)" style="color: rgb(168, 85, 247)">【设定策略ID】</span>如果不填写，将默认使用该用户角色的第一个策略。</p>
<p style="">你可以在兰空图床后台的<span fontsize="" color="rgb(29, 78, 216)" style="color: rgb(29, 78, 216)">【存储策略】</span>中找到策略ID。</p>
<p style=""><span fontsize="" color="rgb(250, 204, 21)" style="color: rgb(250, 204, 21)">【设定相册ID】</span>可以留空。</p>
<p style=""><span fontsize="" color="rgb(154, 52, 18)" style="color: rgb(154, 52, 18)">【设定权限】</span>保持默认即可。</p>
<p style="">最后，点击<span fontsize="" color="rgb(220, 38, 38)" style="color: rgb(220, 38, 38)">【确定】</span>即可完成从 <span fontsize="" color="rgb(202, 138, 4)" style="color: rgb(202, 138, 4)">PicList</span><span fontsize="" color="rgb(30, 64, 175)" style="color: rgb(30, 64, 175)"> </span>上传到 <span fontsize="" color="rgb(37, 99, 235)" style="color: rgb(37, 99, 235)">Lsky Pro</span> 兰空图床。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F0pXTze.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">之后再<span fontsize="" color="rgb(29, 78, 216)" style="color: rgb(29, 78, 216)">【PicList】</span>中选择<span fontsize="" color="rgb(219, 39, 119)" style="color: rgb(219, 39, 119)">【上传】</span>，然后选择上传选择刚刚配置的 Lsky Pro 兰空图床，然后点击<span fontsize="" color="rgb(147, 51, 234)" style="color: rgb(147, 51, 234)">【图片处理】</span>配置上传处理。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FchLGD6.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">进入图片处理设置，按照下面设置就OK了！</p>
<p style=""><span fontsize="" color="rgb(248, 113, 113)" style="color: rgb(248, 113, 113)">【是否移除EXIF信息】</span>启用。</p>
<p style=""><span fontsize="" color="rgb(251, 146, 60)" style="color: rgb(251, 146, 60)">【压缩质量】</span>设置成 <span fontsize="" color="rgb(126, 34, 206)" style="color: rgb(126, 34, 206)">70</span>​ ，这个你们可以自定义，根据自己情况设置。</p>
<p style=""><span fontsize="" color="rgb(234, 179, 8)" style="color: rgb(234, 179, 8)">【是否转换格式】</span>启用。</p>
<p style=""><span fontsize="" color="rgb(34, 197, 94)" style="color: rgb(34, 197, 94)">【转换目的格式】</span>选择<span fontsize="" color="rgb(219, 39, 119)" style="color: rgb(219, 39, 119)">webp​</span>。</p>
<p style="">其他配置可以根据自己需求进行选择是否启用，最后点击<span fontsize="" color="rgb(239, 68, 68)" style="color: rgb(239, 68, 68)">【保存】</span>即可。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FuLWnaA.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style=""><span fontsize="" color="rgb(37, 99, 235)" style="color: rgb(37, 99, 235)">【PicList】</span>支持多种图片上传方式，上传区支持拖拽上传或者点击区域打开文件夹上传。还支持剪贴板图片上传、通过URL上传等功能。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Fassets.piclist.cn%2Fimage%2F230220%2520153130.gif&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h1 style="" id="%E7%BB%93%E6%9D%9F">结束</h1>
<p style="">这样设置好之后，以后的截图就直接可以通过<span fontsize="" color="rgb(22, 163, 74)" style="color: rgb(22, 163, 74)">【PicList】</span>上传到兰空图床。</p>
<p style="">之后自动获取URL就可以在文章里直接粘贴图片地址了。</p>
<p style="">其实对比直接粘贴上传也差不多，这样一来就可以把图片体积控制的很小，加载和浏览速度大大提升了。</p>
<ul>
 <li>
  <p style="">更多<span fontsize="" color="rgb(202, 138, 4)" style="color: rgb(202, 138, 4)">【PicList】</span>的使用技巧请参考官方文档 PicList Doc（<a href="https://piclist.cn/app.html" target="_blank">https://piclist.cn/app.html</a>）</p>
 </li>
 <li>
  <p style="">希望本次教程对大家有所帮助！创作不易希望大家能多多转发收藏本站！感谢感谢~~！</p>
 </li>
 <li>
  <p style="">我是阿狸鹿丫，一个业余爱瞎折腾的数码软件爱好者，技术小白。</p>
 </li>
</ul>
<p style="text-align: center; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=%2Fupload%2Fthe-end.webp&amp;size=m" alt="the-end.webp" width="25%" height="auto" style="display: inline-block"></p>
<p style=""></p>
<p style=""></p>]]></description><guid isPermaLink="false">/archives/0YcrfMA2</guid><dc:creator>阿狸鹿丫</dc:creator><enclosure url="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F3OHaTh.webp&amp;size=m" type="image/jpeg" length="0"/><category>推荐</category><category>教程</category><category>分享</category><pubDate>Sun, 21 Jul 2024 06:23:00 GMT</pubDate></item><item><title><![CDATA[群晖 NAS 搭建 RustDesk 远程桌面]]></title><link>https://blog.aliluya.com/archives/MqYACcYP</link><description><![CDATA[<img src="https://blog.aliluya.com/plugins/feed/assets/telemetry.gif?title=%E7%BE%A4%E6%99%96%20NAS%20%E6%90%AD%E5%BB%BA%20RustDesk%20%E8%BF%9C%E7%A8%8B%E6%A1%8C%E9%9D%A2&amp;url=/archives/MqYACcYP" width="1" height="1" alt="" style="opacity:0;">
<div class="html-edited">
 <hao-note class="flat" noicon="haofont hao-icon-dengpao" style="orange">大家好，我是阿狸鹿丫，一个业余爱瞎折腾的数码软件爱好者，技术小白。</hao-note>
</div>
<p style="text-align: center; "><strong>温馨提示</strong></p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FQxjhGz.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h1 style="" id="%E5%89%8D%E8%A8%80">前言</h1>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FUQUuRB.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<blockquote>
 <p style="">说到远程控制，自己经常使用的是向日葵、Todesk、TeamViewer还有无界趣连。</p>
 <p style="">但是最近因为个人某些原因的需求，需要用到电脑控制手机！但是之前我用的远控软件服务好像都不行，向日葵的话好像需要付费还是什么大致忘记了！</p>
 <p style="">所以在网上找到一个开源的项目：<strong><span color="#2563eb" style="color: #2563eb">RustDesk</span></strong></p>
 <p style="">比起其它的远程控制软件，RustDesk是完全开源的且可以自行搭建个人的服务器。通过个人搭建的服务地址，可以远程控制自己的电脑/手机/电视等等...</p>
 <p style="">所以今天就来搭建一下试试效果！</p>
</blockquote>
<h1 style="" id="%E4%BB%8B%E7%BB%8D">介绍</h1>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F0rU9JF.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">RustDesk 是一个功能齐全的开源远程控制替代方案，以最少的配置实现自托管和安全。</p>
<p style="">RustDesk 可以作为向日葵、TeamViewer 等远程桌面服务的替代品，让您完全掌控数据，避免了安全隐患。相较于由第三方公司运营的远程桌面软件，如向日葵和 TeamViewer，RustDesk 提供了更为安全和自主的选择。对于普通用户而言，使用这些第三方服务如果不付费，很难享受到高质量的服务。而且，一旦这些公司遭遇倒闭、黑客攻击，或内部员工滥用职权，我们的桌面数据安全将面临威胁。使用 RustDesk 可以避免这些问题。</p>
<p style="text-align: start; ; line-height: 20px">此外，厂商共享公共服务器的另一个缺点是网络波动大，承诺的网速往往难以实现，无论是付费还是免费版本。然而，自建服务器则没有这种问题，您可以独享带宽，确保网络速度稳定和迅速。</p>
<h2 style="" id="%E7%89%B9%E5%BE%81"><strong>特征</strong></h2>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Frustdesk.com%2Fimages%2Fen.jpg&amp;size=m" alt="仪表板模型" width="1440" height="100%" style="display: inline-block"></p>
<ul>
 <li>
  <p style="">RustDesk 是一款功能齐全的远程桌面应用程序。</p>
 </li>
 <li>
  <p style="">适用于 Windows、macOS、Linux、iOS、Android 和 Web。</p>
 </li>
 <li>
  <p style="">支持 VP8 / VP9 / AV1 软件编解码器和 H264 / H265 硬件编解码器。</p>
 </li>
 <li>
  <p style="">拥有自己的数据，轻松在您的基础设施上设置自托管解决方案。</p>
 </li>
 <li>
  <p style="">基于 NaCl 的端到端加密的 P2P 连接。</p>
 </li>
 <li>
  <p style="">Windows 无需管理权限或安装，可以根据需要在本地或远程提升权限。</p>
 </li>
</ul>
<blockquote>
 <p style="">官方首页：<a href="https://rustdesk.com/zh/" target="_blank">https://rustdesk.com/</a></p>
</blockquote>
<blockquote>
 <p style="">官方文档：<a href="https://rustdesk.com/docs/zh-cn/" target="_blank">https://rustdesk.com/docs/zh-cn/</a></p>
</blockquote>
<blockquote>
 <p style="">GitHub原项目地址（感谢作者的付出）：<a rel="noopener" href="https://github.com/rustdesk/rustdesk" target="_blank">https://github.com/rustdesk/rustdesk</a></p>
</blockquote>
<h1 style="" id="%E6%90%AD%E5%BB%BA%E9%83%A8%E7%BD%B2">搭建部署</h1>
<p style="">进入群晖NAS后台，打开 File station 文件管理器，新建文件夹 RustDesk 。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FNWziBp.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">之后再在 RustDesk 文件夹下新建 data 文件夹用于存储项目文件。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FQy5rji.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">之后打开 <span color="#1e40af" style="color: #1e40af">Container Manager</span> 点击项目，新建项目 <span color="#15803d" style="color: #15803d">rustdesk-server</span>。</p>
<p style="">复制以下代码使用 <span color="#ca8a04" style="color: #ca8a04">docker-compose.yml</span> 部署</p>
<blockquote>
 <p style=""><span color="#9a3412" style="color: #9a3412">注意：下面命令的 192.168.31.4 是本地NAS的IP，构建完成之后可以把他修改成你的外网访问域名，这样在外面可以随时控制设备。</span></p>
</blockquote>
<pre><code>services:
  hbbs:
    container_name: hbbs
    image: rustdesk/rustdesk-server:1.1.10-3 # please change this to rustdesk/rustdesk-server-pro:latest if you want to install Pro.
    command: hbbs -r 192.168.31.4:21117 -k _
# 192.168.31.4 修改成你的NAS.IP 或者 NAS外网域名。
    volumes:
      - ./data:/root
    network_mode: host
    depends_on:
      - hbbr
    restart: always

  hbbr:
    container_name: hbbr
    image: rustdesk/rustdesk-server:1.1.10-3 # please change this to rustdesk/rustdesk-server-pro:latest if you want to install Pro.
    command: hbbr -k _
    volumes:
      - ./data:/root
    network_mode: host
    restart: always

# Because using docker host mode
# Just in case you forgot the ports:
# 21114 TCP for web console, only available in Pro version
# 21115 TCP for NAT type test
# 21116 TCP TCP hole punching
# 21116 UDP heartbeat/ID server
# 21117 TCP relay
# 21118/21119 TCP for web socket if you want to run web client</code></pre>
<p style=""></p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F7q3hid.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">设置好之后直接下一步，Web Station 不需要设置 直接下一步创建。</p>
<p style="">等待镜像拉取完成，项目构建完成就可以了！</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FUYSAcp.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">回到项目查看，项目已经成功运行了！</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FhECHdO.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">最后，我是需要再外网链接家里设备的。</p>
<p style="">所以我会把之前构建时候填写的内网IP修改成我的外网域名。</p>
<blockquote>
 <p style=""><span color="#c084fc" style="color: #c084fc">(你们也可以构建的时候直接使用域名，我是怕出错所以直接使用的NAS的IP)</span></p>
</blockquote>
<p style=""><strong><span color="#ef4444" style="color: #ef4444">停止项目 - YAML配置 - 修改IP成域名 - 保存 - 构建并启动 - 确定</span></strong></p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F5mwN8h.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h1 style="" id="%E9%81%87%E5%88%B0%E7%9A%84%E9%97%AE%E9%A2%98">遇到的问题</h1>
<p style="">这里说一下遇到的问题，第一次拉取镜像部署的时候出现项目启动不起来。</p>
<p style="">日志显示以下信息，提示邮件注册什么的一直启动不起来。</p>
<pre><code>Registered email required (-m option).derr Please pay and register on https://rustdesk.com/server.</code></pre>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FuS2cM1.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">最后查到到原因，解决办法就是拉取镜像的时候版本问题，官方文档显示使用 <span color="#ca8a04" style="color: #ca8a04">rustdesk-server:latest</span> 拉取最新文档，但是结果拉去的并不是最新的，所以要解决这个问题，就是手动吧版本号修改为 <span color="#ef4444" style="color: #ef4444">rustdesk-server:1.1.10-3</span> 重新拉取部署一下就OK了！</p>
<p style="">现在最新版本是 <span color="#db2777" style="color: #db2777">rustdesk-server:1.1.11-1</span> 修改成这个版本也行！</p>
<h1 style="" id="%E6%8F%90%E5%8F%96%E7%A7%98%E9%92%A5"><strong>提取秘钥</strong></h1>
<p style="">回到群晖后台，打开 File station 进入 RustDesk 下的 data 目录。</p>
<p style="">找到 【<span color="#dc2626" style="color: #dc2626">id_ed25519.pub</span>】文件，并且下载到本地。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FzZG6h5.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">下载完成后我们使用记事本打开文件，查看里面内容。</p>
<p style=""><span color="#ca8a04" style="color: #ca8a04">这一串字符串就是我们需要用到的密钥！</span></p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FCUw4i4.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h1 style="" id="%E5%AE%A2%E6%88%B7%E7%AB%AF"><strong>客户端</strong></h1>
<h2 style="" id="%E4%B8%8B%E8%BD%BD%E5%AE%A2%E6%88%B7%E7%AB%AF">下载客户端</h2>
<p style="">我们打开 RustDesk 官方网站 下载客户端。</p>
<p style="">官网：<a href="https://rustdesk.com/zh/" target="_blank">https://rustdesk.com/zh/</a></p>
<p style="">大家自行选择自己对应版本下载即可。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FiP58Kr.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">我这就以macOS版本做演示。</p>
<p style="">下载完后直接拖拽安装一下。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FxvVrNo.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h2 style="" id="%E7%B3%BB%E7%BB%9F%E9%85%8D%E7%BD%AE%E6%9D%83%E9%99%90">系统配置权限</h2>
<p style="">安装后打开 RustDesk 这可以看到这界面大家都很熟悉吧，和大部分的远控软件界面都是大同小异。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FjoYuA2.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">开始我们给rusrdesk配置一下权限。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FFqTrYW.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">按照提示我们给予配置录屏、声音、控制、开机启动权限。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FgBtDHm.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2Fvuwifz.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FikRa5c.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">录屏、声音、控制权限都配置好之后，之后提示你需要重启打开RustDesk。</p>
<h2 style="" id="%E5%AE%A2%E6%88%B7%E7%AB%AF%E8%AE%BE%E7%BD%AE">客户端设置</h2>
<p style="">点击 RustDesk 的ID旁边的三个点...进入设置界面。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F0fDiVp.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">点击【网络】之后点击解锁网络设置，输入一下密码解锁就可以了！</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F1kM9R3.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">然后添加你的服务器地址（<span color="#ef4444" style="color: #ef4444">域名:端口号</span>）和<span color="#ca8a04" style="color: #ca8a04">密钥Key</span>，完成后点击应用。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FHrHK9u.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">设置好之后返回主页，查看最下面如果显示<span color="#16a34a" style="color: #16a34a">【就绪】</span>就表示已经连接成功了，如果出现错误就表示之前步骤没设置好。</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FIJddk5.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style=""></p>
<h1 style="" id="%E7%AB%AF%E5%8F%A3%E6%98%A0%E5%B0%84">端口映射</h1>
<p style="">需要映射的端口：</p>
<ul>
 <li>
  <p style=""><span color="#ea580c" style="color: #ea580c">TCP：21115, 21116, 21117</span></p>
 </li>
 <li>
  <p style="text-align: start; "><span color="#ea580c" style="color: #ea580c">UDP：21116（关键：这个一定要别漏了否则外网访问不了）</span></p>
 </li>
 <li>
  <p style="text-align: start; "><span color="#ea580c" style="color: #ea580c">21118和21119是网页客户端的，如果不需要用网页端就可以不映射</span></p>
 </li>
</ul>
<p style="text-align: start; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F60sMHa.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h1 style="" id="%E8%BF%9E%E6%8E%A5%E6%B5%8B%E8%AF%95">连接测试</h1>
<p style="">我直接在我另一台Windows笔记本上安装了RustDesk，远控成功！</p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FpkWCLq.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">远控安卓手机<span color="#be185d" style="color: #be185d">(外网5G网络访问成功)</span></p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FqAQHYk.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h1 style="" id="%E7%BB%93%E6%9D%9F">结束</h1>
<p style="">Rustdesk 确实非常实用，特别是它可以兼容各种手机客户端。无论是外出时需要用手机控制电脑，还是出差时不想带笔记本可以用平板进行简单操作，甚至是父母的手机出现问题时可以远程控制解决，都能轻松实现。</p>
<p style="">此外，Rustdesk 还支持无限设备连接，服务器可以部署在本地，并且完全免费，不用担心费用或带宽问题。</p>
<p style="">希望本次教程对大家有所帮助！创作不易希望大家能多多转发收藏本站！感谢感谢~~！</p>
<p style="">我是阿狸鹿丫，一个业余爱瞎折腾的数码软件爱好者，技术小白。</p>
<p style="text-align: center; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=%2Fupload%2Fthe-end.webp&amp;size=m" alt="the-end.webp" width="50%" height="auto" style="display: inline-block"></p>
<p style=""></p>]]></description><guid isPermaLink="false">/archives/MqYACcYP</guid><dc:creator>阿狸鹿丫</dc:creator><enclosure url="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FJA0xGu.webp&amp;size=m" type="image/jpeg" length="0"/><category>NAS</category><category>推荐</category><category>教程</category><pubDate>Sat, 20 Jul 2024 13:00:00 GMT</pubDate></item><item><title><![CDATA[NAS 部署 Homarr 私人导航页 ]]></title><link>https://blog.aliluya.com/archives/WXxk9TqQ</link><description><![CDATA[<img src="https://blog.aliluya.com/plugins/feed/assets/telemetry.gif?title=NAS%20%E9%83%A8%E7%BD%B2%20Homarr%20%E7%A7%81%E4%BA%BA%E5%AF%BC%E8%88%AA%E9%A1%B5%20&amp;url=/archives/WXxk9TqQ" width="1" height="1" alt="" style="opacity:0;">
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F4Y1XSw.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<div class="html-edited">
 <hao-note class="flat" noicon="haofont hao-icon-dengpao" style="orange">大家好，我是阿狸鹿丫，一个业余爱瞎折腾的数码软件爱好者，技术小白。</hao-note>
</div>
<h1 style="" id="%E5%89%8D%E8%A8%80">前言</h1>
<blockquote>
 <p style="">开始折腾NAS之后，发现越来越多项目都能部署在自己的nas上。到现在为止在自己的nas上已经部署了不少的Docker项目，有时候管理起来或者需要访问的时候经常不记得什么项目分配了什么端口。</p>
 <p style="">就算设置了反向代理使用域名访问，把项目收藏在收藏夹里面，这样也不是不行，但是总是缺少了点高级感。</p>
 <p style="">所以我就考虑搭建一个私人的导航页，给NAS里的项目归类到一起，以后访问一个网页就可以看到所有的NAS项目，想访问什么项目直接点击就可以，不需要再一个一个去找去敲域名了！</p>
 <p style="">之后找了好几款导航页，比如Heimdall、Dashy、Homepag，都很不错！最后还是比较喜欢这一款【Homarr】。</p>
</blockquote>
<h1 style="" id="homarr">Homarr</h1>
<p style="text-align: center; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FwwZUk4.gif&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h2 style="" id="%E4%BB%8B%E7%BB%8D%EF%BC%9A">介绍：</h2>
<blockquote>
 <p style=""><strong>Homarr是一个基于Python构建的轻量级解决方案，它允许用户以编程方式控制家中的智能设备。</strong></p>
 <p style=""><strong>它支持多种常见的智能家居协议，如MQTT、HTTP、Home Assistant API等，让你可以将不同品牌的设备整合到一个平台上。</strong></p>
 <p style=""><strong>Homarr是一个简单但功能强大的服务器仪表板。</strong></p>
 <p style=""><strong>使用 Homarr 简化服务器管理，一个时尚、现代的仪表板，可让您轻松访问所有应用和服务。</strong></p>
 <p style=""><strong>使用 Homarr，您可以在一个方便的位置访问和控制所有内容。Homarr 与您添加的应用无缝集成，为您提供有价值的信息并让您完全控制。</strong></p>
 <p style=""><strong>安装轻而易举，Homarr 支持多种部署方法。</strong></p>
 <p style=""></p>
</blockquote>
<ul>
 <li>
  <p style="">更多详细说明请查阅官方文档。</p>
 </li>
 <li>
  <p style="">官方文档：<a href="https://homarr.dev/docs/getting-started/" target="_blank">https://homarr.dev/docs/getting-started/</a></p>
 </li>
</ul>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FwdB6Vi.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h2 style="" id="%E7%89%B9%E7%82%B9%EF%BC%9A">特点：</h2>
<ul>
 <li>
  <p style="">🖌️ 高度可定制，具有广泛的拖放网格系统</p>
 </li>
 <li>
  <p style="">✨ 与您最喜欢的自托管应用程序无缝集成</p>
 </li>
 <li>
  <p style="">📌 轻松快速地管理应用程序 - 无需 YAML</p>
 </li>
 <li>
  <p style="">🙊 先进的秘密管理系统，增强安全性</p>
 </li>
 <li>
  <p style="">📄 详细的文档和活跃的社区</p>
 </li>
 <li>
  <p style="">🔍 立即搜索网络或支持的集成</p>
 </li>
 <li>
  <p style="">🏴󠁧󠁢󠁮󠁩󠁲󠁿 使用内置状态系统监控您的应用程序</p>
 </li>
 <li>
  <p style="">🦞 全面的内置图标选择器，拥有超过 7000 个图标</p>
 </li>
 <li>
  <p style="">🐳 使用 Docker、unRAID 和 Synology 轻松部署</p>
 </li>
 <li>
  <p style="">🚀 与任何主流消费硬件兼容（x86、Raspberry Pi、旧笔记本电脑......）</p>
 </li>
</ul>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F7pGMIx.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style="">
 <video src="https://PDDGO-IMG.s3.us-east-005.backblazeb2.com/217098893-5880e7de-13d0-42c5-b505-f7921593396f.mp4" width="100%" height="auto" controls="true"></video>
</p>
<h1 style="" id="docker%E9%83%A8%E7%BD%B2">Docker部署</h1>
<ul>
 <li>
  <p style="">接下来我们就开始在群晖NAS进行部署Homarr项目！</p>
 </li>
</ul>
<h2 style="" id="%E6%96%B0%E5%BB%BA%E7%9B%AE%E5%BD%95">新建目录</h2>
<ul>
 <li>
  <p style="">首先进入群晖 NAS 后台，打开 File station 新建文件夹 Homarr。</p>
 </li>
</ul>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FVFSosK.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<ul>
 <li>
  <p style="">然后在新建的 Homarr 文件夹下 再新建 <span style="font-size: 16px; color: rgb(51, 51, 51)">configs 和 icons 两个文件夹。</span></p>
 </li>
</ul>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FYb27PH.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h2 style="" id="%E5%88%9B%E5%BB%BA%E9%A1%B9%E7%9B%AE">创建项目</h2>
<ul>
 <li>
  <p style="">文件夹建立好之后我们就要拉去最新的homarr镜像。</p>
 </li>
 <li>
  <p style="">打开 <strong>Container Manager</strong> 在点击项目。</p>
 </li>
</ul>
<blockquote>
 <p style=""><strong><span style="font-size: 14px; color: rgb(239, 68, 68)">Homarr 不再使用 hub.docker.com，而是改用 ghcr.io</span></strong></p>
</blockquote>
<ul>
 <li>
  <p style="">所以我们使用<strong>Docker Compose</strong>进行拉取镜像来部署项目。</p>
 </li>
 <li>
  <p style="">在项目点击新增创新项目。</p>
 </li>
 <li>
  <p style="">复制下面命令创建 <strong><span style="font-size: 15.2px; color: rgb(28, 30, 33)">docker-compose.yml</span></strong></p>
 </li>
</ul>
<pre><code class="language-yaml">version: '3'
services:
  homarr:
    container_name: homarr
    image: ghcr.io/ajnart/homarr:latest
    restart: unless-stopped
    volumes:
      - ./configs:/app/data/configs
      - ./icons:/app/public/icons
    ports:
      - '7575:7575'</code></pre>
<ul>
 <li>
  <p style="">按照下面填写好点击下一步部署。</p>
 </li>
</ul>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F2BF3SY.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<ul>
 <li>
  <p style="">详细安装也可以阅览官方文档！</p>
 </li>
</ul>
<blockquote>
 <p style="">官方文档：<a href="https://homarr.dev/docs/getting-started/installation#-docker-compose" target="_blank">Docker安装</a></p>
</blockquote>
<ul>
 <li>
  <p style="">接下来设置完之后一直下一步直到创建项目完成。</p>
 </li>
</ul>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FefBUmc.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<ul>
 <li>
  <p style="">接下来直接等待镜像拉去完成。</p>
 </li>
</ul>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FNG3mwg.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<ul>
 <li>
  <p style="">等待显示下面这段就表示拉取完成并创建部署成功了。</p>
 </li>
</ul>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FP4JY2g.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<ul>
 <li>
  <p style="">回到我们的 <strong>Container Manager </strong>项目上已经可以看到我们的 <span style="font-size: 16px; color: rgb(28, 30, 33)">Homarr 已经成功运行了。</span></p>
 </li>
</ul>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FolZR63.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<ul>
 <li>
  <p style="">到这一步，已经表示成功部署好了！</p>
 </li>
 <li>
  <p style="">我们接下来就直接输入NAS的IP地址加上刚刚设置的7575端口号就能直接访问的<span style="font-size: 16px; color: rgb(28, 30, 33)">Homarr项目。</span></p>
 </li>
 <li>
  <p style="">并且点击 Start update process 进行相关更新设置。</p>
 </li>
</ul>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F76Sm7u.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<ul>
 <li>
  <p style="">之后填写设置一下自己的账号密码。</p>
 </li>
 <li>
  <p style="">点击 Continue 继续。</p>
 </li>
</ul>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FYQSTL5.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<ul>
 <li>
  <p style="">之后就会提示你：<strong>恭喜，您已设置好 Homarr！</strong></p>
 </li>
 <li>
  <p style="">这时候我们的 Homarr 已经全部搭建完成了。</p>
 </li>
 <li>
  <p style="">点击下面两个链接直接可以去到我们 Homarr 的主页和后台。</p>
 </li>
</ul>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FpdVuGj.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h1 style="" id="homarr%E4%B8%BB%E9%A1%B5">Homarr主页</h1>
<blockquote>
 <p style=""><span style="font-size: 16px; color: rgb(85, 86, 102)">访问地址：http://192.168.31.4:7575</span>
  <br>
  <span style="font-size: 16px; color: rgb(85, 86, 102)">将IP地址改为自己服务器的IP地址。</span></p>
</blockquote>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FROueat.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h1 style="" id="homarr%E5%90%8E%E5%8F%B0">Homarr后台</h1>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FAUZtY7.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h1 style="" id="%E5%88%87%E6%8D%A2%E4%B8%AD%E6%96%87">切换中文</h1>
<ul>
 <li>
  <p style="">进入后台点击右上角 名称 链接 选择 User preferences 用户设置。</p>
 </li>
</ul>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F0M3m7L.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style=""></p>
<ul>
 <li>
  <p style=""><span style="font-size: 16px">在</span><strong><span style="font-size: 16px; color: rgb(33, 37, 41)">Language </span></strong><span style="font-size: 16px; color: rgb(33, 37, 41)">语言栏选着中文即可。</span></p>
 </li>
</ul>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2Fj4g7fc.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<ul>
 <li>
  <p style="">设置好保存一下就切换成中文界面了！</p>
 </li>
</ul>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FZOJwmc.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h1 style="" id="homarr%E8%AE%BE%E7%BD%AE%E8%AF%A6%E7%BB%86">Homarr设置详细</h1>
<h2 style="" id="%E6%B7%BB%E5%8A%A0%E7%BD%91%E5%9D%80"><strong>添加网址</strong></h2>
<ul>
 <li>
  <p style="text-align: start; ">点击右上角进入编辑模式。</p>
 </li>
</ul>
<p style="text-align: start; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F8cU6BU.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<ul>
 <li>
  <p style="text-align: start; ">之后也是点击右上角 <strong>添加新磁贴 </strong>选应用 添加网址。</p>
 </li>
</ul>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F2YCzwf.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<ul>
 <li>
  <p style="">填写通用的相关信息。</p>
 </li>
</ul>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F4loYWj.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<ul>
 <li>
  <p style="">为了美观，我们还需要设置一下外观。</p>
 </li>
 <li>
  <p style="">自定义设置一下图标。</p>
 </li>
 <li>
  <p style="">设置完成直接点击保存。</p>
 </li>
</ul>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FZEx8su.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<ul>
 <li>
  <p style="">也可以直接搜索Homarr里面自带的图库。</p>
 </li>
</ul>
<p style=""></p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FTKLoZf.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<ul>
 <li>
  <p style="">这样就添加成功了！很方便快捷！</p>
 </li>
</ul>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FRD7GCF.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h2 style="" id="%E6%B7%BB%E5%8A%A0%E7%BB%84%E4%BB%B6">添加组件</h2>
<ul>
 <li>
  <p style="">点击 <strong>添加新磁贴 </strong>还可以给导航页添加自带的组件。</p>
 </li>
</ul>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FRJRp97.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<ul>
 <li>
  <p style="">这可以添加自己需要的小组件，比如日历、日期和时间、天气、视频等等...</p>
 </li>
</ul>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F6XVlvX.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F5ZDyZl.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h2 style="" id="%E6%B7%BB%E5%8A%A0%E5%88%86%E7%B1%BB">添加分类</h2>
<ul>
 <li>
  <p style="">还可以添加分类来管理我们的网址标签。
   <br>
   <strong><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FQeMs8o.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></strong></p>
 </li>
</ul>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FzwHrSw.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<ul>
 <li>
  <p style=""><span style="font-size: 16px; color: rgb(21, 21, 21)">添加分类后 可以将添加的应用和小组件拖放到分类中，并且分类也可以拖放位置、尺寸等等。</span></p>
 </li>
</ul>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2Fdgnu84.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h2 style="" id="%E4%BF%AE%E6%94%B9%E4%B9%A6%E7%AD%BE">修改书签</h2>
<ul>
 <li>
  <p style="">设置完成的网址标签 进入编辑模式之后 我们点击标签右上角的齿轮 可以编辑设置这标签和删除标签等操作。</p>
 </li>
</ul>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FVXCznN.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<h1 style="" id="%E7%BB%93%E6%9D%9F">结束</h1>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FC9EZBo.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style=""><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2F0YxMw8.webp&amp;size=m" width="100%" height="100%" style="display: inline-block"></p>
<p style=""></p>
<ul>
 <li>
  <p style="">Homarr是一款挺不错的导航页 个人觉得界面整洁好看，部署也简单。喜欢的朋友可以试试看。这样以后管理自己的网站或者收藏自己喜欢的网页就方便多了。</p>
 </li>
 <li>
  <p style="">希望本次教程对大家有所帮助！创作不易希望大家能多多转发收藏本站！感谢感谢~~！</p>
 </li>
</ul>
<ul>
 <li>
  <p style="">我是阿狸鹿丫，一个业余爱瞎折腾的数码软件爱好者，技术小白。</p>
 </li>
</ul>
<p style="text-align: center; "><img src="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=%2Fupload%2Fthe-end.webp&amp;size=m" alt="the-end.webp" width="50%" height="auto" style="display: inline-block"></p>
<p style=""></p>
<p style=""></p>
<p style=""></p>
<p style=""></p>
<p style=""></p>
<p style=""></p>
<p style=""></p>
<p style=""></p>
<p style=""></p>]]></description><guid isPermaLink="false">/archives/WXxk9TqQ</guid><dc:creator>阿狸鹿丫</dc:creator><enclosure url="https://blog.aliluya.com/apis/api.storage.halo.run/v1alpha1/thumbnails/-/via-uri?uri=https%3A%2F%2Flsky.xuxueli.cn%2FY3rxAv.webp&amp;size=m" type="image/jpeg" length="0"/><category>推荐</category><category>教程</category><category>分享</category><pubDate>Thu, 18 Jul 2024 04:46:00 GMT</pubDate></item></channel></rss>