<?xml version='1.0' encoding='UTF-8'?>
<?xml-stylesheet href="/rss/stylesheet/" type="text/xsl"?>
<rss xmlns:content='http://purl.org/rss/1.0/modules/content/' xmlns:taxo='http://purl.org/rss/1.0/modules/taxonomy/' xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#' xmlns:itunes='http://www.itunes.com/dtds/podcast-1.0.dtd' xmlns:googleplay="http://www.google.com/schemas/play-podcasts/1.0" xmlns:dc='http://purl.org/dc/elements/1.1/' xmlns:atom='http://www.w3.org/2005/Atom' xmlns:podbridge='http://www.podbridge.com/podbridge-ad.dtd' version='2.0'>
<channel>
  <title>AIOVTUE</title>
  <language>zh-cn</language>
  <generator>microfeed.org</generator>
  <itunes:type>episodic</itunes:type>
  <itunes:explicit>false</itunes:explicit>
  <atom:link rel="self" href="https://cms-d84.pages.dev/rss/" type="application/rss+xml"/>
  <link>https://cms-d84.pages.dev</link>
  <description>
    <![CDATA[<p><strong>﻿雨是神的烟花</strong></p><p><br></p><p><strong>友链：</strong></p><ul><li><a href="https://20030327.xyz" rel="noopener noreferrer" target="_blank"><strong>AIOVTUE'S blog</strong></a> ：雨是神的烟花</li><li><a href="https://aiovtue.us.kg" rel="noopener noreferrer" target="_blank"><strong>aiovtue's blog</strong></a> ：四分之三欢喜</li><li><a href="https://zxb.us.kg/" rel="noopener noreferrer" target="_blank"><strong>aiovtue's notion</strong></a> ：我想要如清泉般的爱</li></ul>]]>
  </description>
  <itunes:author>aiovtue</itunes:author>
  <itunes:image href="https://r2public.aiovt.us.kg/cms/production/images/channel-fe8c3e91c7dc5de6790d45b3e96a3da6.png"/>
  <image>
    <title>AIOVTUE</title>
    <url>https://r2public.aiovt.us.kg/cms/production/images/channel-fe8c3e91c7dc5de6790d45b3e96a3da6.png</url>
    <link>https://cms-d84.pages.dev</link>
  </image>
  <copyright>©2024</copyright>
  <item>
    <title>Makedown语法</title>
    <guid>VVtzsF-Stlu</guid>
    <pubDate>Sat, 13 Jul 2024 16:39:04 GMT</pubDate>
    <itunes:explicit>false</itunes:explicit>
    <description>
      <![CDATA[<p><a href="https://tele-tuchuang.pages.dev/file/85693f0f955b630104061.png" rel="noopener noreferrer" target="_blank"><img src="https://tele-tuchuang.pages.dev/file/85693f0f955b630104061.png"></a></p><h6><strong>来了，爱了，给了她一颗星星，走了</strong></h6><h3><strong>标题语法</strong></h3><p>|Markdown语法|HTML|</p><p>|—|—|</p><p>|# 一级|&lt;h1&gt;一级&lt;/h1&gt;|</p><p>|…|…|</p><p>|###### 六级|&lt;h6&gt;六级&lt;/h6&gt;|</p><h3><strong>段落语法</strong></h3><p>要创建段落，请使用空白行将一行或多行文本进行分隔&nbsp;</p><p>不要用空格（spaces）或制表符（ tabs）缩进段落</p><h3><strong>换行语法</strong></h3><p>Markdown:</p><p>在一行的末尾添加两个或多个空格，然后按回车键,即可创建一个换行&nbsp;</p><p>HTML：</p><p><strong>PLAINTEXT</strong></p><pre class="ql-syntax" spellcheck="false">1
2
3

&lt;p&gt;内容&lt;/p&gt;

</pre><h3><strong>强调语法</strong></h3><h4><strong>粗体：</strong></h4><p>Markdown：</p><p>**内容**</p><p>__内容__</p><p>HTML:</p><p>&lt;strong&gt;内容&lt;/strong&gt;</p><h4><strong>斜体</strong></h4><p>Markdown:</p><p>*内容*</p><p>_内容_</p><p>HTML:</p><p>&lt;em&gt;内容&lt;/em&gt;</p><h3><strong>引用语法</strong></h3><p>要创建块引用，请在段落前添加一个 &gt; 符号</p><p><strong>PLAINTEXT</strong></p><pre class="ql-syntax" spellcheck="false">1
2
3

&gt;内容

</pre><p>&gt;&gt;内容</p><h3><strong>列表语法</strong></h3><h4><strong>有序列表:</strong></h4><p>Markdown:&nbsp;</p><p>要创建有序列表，请在每个列表项前添加数字并紧跟一个英文句点。数字不必按数学顺序排列，但是列表应当以数字 1 起始</p><p><strong>PLAINTEXT</strong></p><pre class="ql-syntax" spellcheck="false">1
2
3
4
5
6
7
8
9
10
11
12
13

1. First item

2. Second item

3. Third item

&nbsp; &nbsp; 1. Indented item

&nbsp; &nbsp; 2. Indented item

4. Fourth item

</pre><p>HTML:</p><p><strong>PLAINTEXT</strong></p><pre class="ql-syntax" spellcheck="false">1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

&lt;ol&gt;

&lt;li&gt;First item&lt;/li&gt;

&lt;li&gt;Second item&lt;/li&gt;

&lt;li&gt;Third item

&lt;ol&gt;

&lt;li&gt;Indented item&lt;/li&gt;

&lt;li&gt;Indented item&lt;/li&gt;

&lt;/ol&gt;

&lt;/li&gt;

&lt;li&gt;Fourth item&lt;/li&gt;

&lt;/ol&gt;

</pre><h4><strong>无序列表:</strong></h4><p>Markdown:&nbsp;</p><p>要创建无序列表，请在每个列表项前面添加破折号 (-)、星号 (*) 或加号 (+) 。缩进一个或多个列表项可创建嵌套列表</p><p><strong>PLAINTEXT</strong></p><pre class="ql-syntax" spellcheck="false">1
2
3
4
5
6
7
8
9
10
11
12
13

- First item

- Second item

- Third item

&nbsp; &nbsp; - Indented item

&nbsp; &nbsp; - Indented item

- Fourth item

</pre><p>HTML:&nbsp;</p><p><strong>PLAINTEXT</strong></p><pre class="ql-syntax" spellcheck="false">1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

&lt;ul&gt;

&lt;li&gt;First item&lt;/li&gt;

&lt;li&gt;Second item&lt;/li&gt;

&lt;li&gt;Third item

&lt;ul&gt;

&lt;li&gt;Indented item&lt;/li&gt;

&lt;li&gt;Indented item&lt;/li&gt;

&lt;/ul&gt;

&lt;/li&gt;

&lt;li&gt;Fourth item&lt;/li&gt;

&lt;/ul&gt;

</pre><h3><strong>代码语法</strong></h3><p>要将单词或短语表示为代码，请将其包裹在反引号 (`) 中</p><p><strong>PLAINTEXT</strong></p><pre class="ql-syntax" spellcheck="false">1
2
3

`nano`

</pre><p>如果你要表示为代码的单词或短语中包含一个或多个反引号，则可以通过将单词或短语包裹在双反引号(``)中&nbsp;&nbsp;</p><p><strong>PLAINTEXT</strong></p><pre class="ql-syntax" spellcheck="false">1
2
3

`` `npm` install ``

</pre><h3><strong>分隔线语法</strong></h3><p>要创建分隔线，请在单独一行上使用三个或多个星号 (***)、破折号 (—) 或下划线 (___) ，并且不能包含其他内容&nbsp;</p><p><strong>PLAINTEXT</strong></p><pre class="ql-syntax" spellcheck="false">1
2
3
4
5
6
7

***

---

_________

</pre><h3><strong>链接语法</strong></h3><p>链接文本放在中括号内，链接地址放在后面的括号中，链接title可选</p><p>Markdown：</p><p>[超链接显示名](超链接地址 "超链接title")</p><p>HTML：</p><p>&lt;a href="超链接地址" title="超链接title"&gt;超链接显示名&lt;/a&gt;</p><h4><strong>给链接增加 Title</strong></h4><p>链接title是当鼠标悬停在链接上时会出现的文字，这个title是可选的，它放在圆括号中链接地址后面，跟链接地址之间以空格分隔&nbsp;</p><p>[标题](https://shili.com "一段描述")</p><p>渲染效果如下：</p><p><a href="https://shili.com/" rel="noopener noreferrer" target="_blank">标题</a></p><h4><strong>网址和Email地址</strong></h4><p>使用尖括号可以很方便地把URL或者email地址变成可点击的链接&nbsp;</p><p><strong>PLAINTEXT</strong></p><pre class="ql-syntax" spellcheck="false">1
2
3
4
5

&lt;https://example.com&gt; &nbsp;

&lt;fake@example.com&gt;

</pre><h4><strong>带格式化的链接</strong></h4><p>强调链接, 在链接语法前后增加星号。 要将链接表示为代码，请在方括号中添加反引号</p><p><strong>PLAINTEXT</strong></p><pre class="ql-syntax" spellcheck="false">1
2
3
4
5
6
7
8
9
10
11

**[example](https://example.com)**. &nbsp;

  

*[example](https://example.com)* &nbsp;

  

&nbsp;[`example`](#example).

</pre><h4><strong>引用类型链接</strong></h4><p>引用样式链接是一种特殊的链接，它使URL在Markdown中更易于显示和阅读。参考样式链接分为两部分：与文本保持内联的部分以及存储在文件中其他位置的部分，以使文本易于阅读</p><p><strong>PLAINTEXT</strong></p><pre class="ql-syntax" spellcheck="false">1
2
3
4
5
6
7

[example][1]

  

[1]: https://example.com

</pre><p>效果如下：<a href="https://example.com/" rel="noopener noreferrer" target="_blank">example</a></p><h3><strong>图片语法</strong></h3><p>要添加图像，请使用感叹号 (!), 然后在方括号增加替代文本，图片链接放在圆括号里，括号里的链接后可以增加一个可选的图片标题文本</p><p>Markdown：![图片alt](图片链接 "图片title")</p><p>HTML:```</p><p><a href="https://bk.20030327.xyz/2024/07/16/7.Makedown%E8%AF%AD%E6%B3%95/%E5%9B%BE%E7%89%87%E9%93%BE%E6%8E%A5" rel="noopener noreferrer" target="_blank"><img src="https://bk.20030327.xyz/2024/07/16/7.Makedown%E8%AF%AD%E6%B3%95/%E5%9B%BE%E7%89%87%E9%93%BE%E6%8E%A5"></a>```</p><h4><strong>链接图片</strong></h4><p>给图片增加链接，请将图像的Markdown 括在方括号中，然后将链接添加在圆括号中</p><p>[![图片alt](图片链接 "图片title")](https://example.com)</p><p>例如:&nbsp;</p><p><a href="https://example.com/" rel="noopener noreferrer" target="_blank"><img src="https://r2roim-picx.pages.dev/rest/avatar.png"></a></p><h3><strong>表格</strong></h3><p>要添加表，请使用三个或多个连字符（—）创建每列的标题，并使用管道（|）分隔每列。您可以选择在表的任一端添加管道</p><p><strong>PLAINTEXT</strong></p><pre class="ql-syntax" spellcheck="false">1
2
3
4
5
6
7
8
9

| Syntax &nbsp; &nbsp; &nbsp;| Description |

| ----------- | ----------- |

| Header &nbsp; &nbsp; &nbsp;| Title &nbsp; &nbsp; &nbsp; |

| Paragraph &nbsp; | Text &nbsp; &nbsp; &nbsp; &nbsp;|

</pre><p>呈现的输出如下所示:&nbsp;</p><p>| Syntax&nbsp;&nbsp;&nbsp;| Description |</p><p>| ———– | ———– |</p><p>| Header&nbsp;&nbsp;&nbsp;| Title&nbsp;&nbsp;&nbsp;|</p><p>| Paragraph&nbsp;| Text&nbsp;&nbsp;&nbsp;&nbsp;|</p><h4><strong>对齐</strong></h4><p>您可以通过在标题行中的连字符的左侧，右侧或两侧添加冒号（:），将列中的文本对齐到左侧，右侧或中心</p><p><strong>PLAINTEXT</strong></p><pre class="ql-syntax" spellcheck="false">1
2
3
4
5
6
7
8
9

| Syntax &nbsp; &nbsp; &nbsp;| Description | Test Text &nbsp; &nbsp; |

| :--- &nbsp; &nbsp; &nbsp; &nbsp;| &nbsp; &nbsp;:----: &nbsp; | &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;---: |

| Header &nbsp; &nbsp; &nbsp;| Title &nbsp; &nbsp; &nbsp; | Here's this &nbsp; |

| Paragraph &nbsp; | Text &nbsp; &nbsp; &nbsp; &nbsp;| And more &nbsp; &nbsp; &nbsp;|

</pre><p>呈现的输出如下所示：&nbsp;</p><p>| Syntax&nbsp;&nbsp;&nbsp;| Description | Test Text&nbsp;&nbsp;|</p><p>| :—&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;:—-:&nbsp;|&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;—: |</p><p>| Header&nbsp;&nbsp;&nbsp;| Title&nbsp;&nbsp;&nbsp;| Here’s this&nbsp;|</p><p>| Paragraph&nbsp;| Text&nbsp;&nbsp;&nbsp;&nbsp;| And more&nbsp;&nbsp;&nbsp;|</p><h4><strong>格式化表格中的文字</strong></h4><p>您可以在表格中设置文本格式。例如，您可以添加链接，代码（仅反引号（`）中的单词或短语，而不是代码块）和强调&nbsp;</p><p>您不能添加标题，块引用，列表，水平规则，图像或HTML标签</p><h3><strong>围栏代码块</strong></h3><p>Markdown基本语法允许您通过将行缩进四个空格或一个制表符来创建代码块。如果发现不方便，请尝试使用受保护的代码块。根据Markdown处理器或编辑器的不同，您将在代码块之前和之后的行上使用三个反引号（(```）或三个波浪号（~~~）</p><h3><strong>删除线</strong></h3><p>您可以通过在单词中心放置一条水平线来删除单词。结果看起来像这样。此功能使您可以指示某些单词是一个错误，要从文档中删除。若要删除单词，请在单词前后使用两个波浪号~~</p><p><strong>PLAINTEXT</strong></p><pre class="ql-syntax" spellcheck="false">1
2
3

~~世界是平坦的。~~ 我们现在知道世界是圆的

</pre><p>呈现的输出如下所示：&nbsp;</p><p>世界是平坦的。&nbsp;我们现在知道世界是圆的</p><h3><strong>任务列表语法</strong></h3><p>任务列表使您可以创建带有复选框的项目列表。在支持任务列表的Markdown应用程序中，复选框将显示在内容旁边。要创建任务列表，请在任务列表项之前添加破折号-和方括号[ ]，并在[ ]前面加上空格。要选择一个复选框，请在方括号[x]之间添加 x</p><p><strong>PLAINTEXT</strong></p><pre class="ql-syntax" spellcheck="false">1
2
3
4
5
6
7

- [x] Write the press release

- [ ] Update the website

- [ ] Contact the media

</pre><p>呈现的输出如下所示：&nbsp;</p><ul><li>&nbsp;Write the press release</li><li>&nbsp;Update the website</li><li>&nbsp;Contact the media</li></ul><h3><strong>自动网址链接</strong></h3><p>许多Markdown处理器会自动将URL转换为链接。这意味着如果您输入http://www.example.com,即使您未使用方括号，您的Markdown处理器也会自动将其转换为链接&nbsp;</p><p>如果您不希望自动链接URL，则可以通过将URL表示为带反引号的代码来删除该链接</p><p>http://www.example.com</p><h3><strong>脚注</strong></h3><p>脚注使您可以添加注释和参考，而不会使文档正文混乱。当您创建脚注时，带有脚注的上标数字会出现在您添加脚注参考的位置。读者可以单击链接以跳至页面底部的脚注内容</p><p>要创建脚注参考，请在方括号（[^1]）内添加插入符号和标识符。标识符可以是数字或单词，但不能包含空格或制表符。标识符仅将脚注参考与脚注本身相关联-在输出中，脚注按顺序编号</p><p>在括号内使用另一个插入符号和数字添加脚注，并用冒号和文本（[^1]: My footnote.）。您不必在文档末尾添加脚注。您可以将它们放在除列表，块引号和表之类的其他元素之外的任何位置</p><p><strong>PLAINTEXT</strong></p><pre class="ql-syntax" spellcheck="false">1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

Here's a simple footnote,[^1] and here's a longer one.[^bignote]

  

[^1]: This is the first footnote.

  

[^bignote]: Here's one with multiple paragraphs and code.

  

&nbsp; &nbsp; Indent paragraphs to include them in the footnote.

  

&nbsp; &nbsp; `{ my code }`

  

&nbsp; &nbsp; Add as many paragraphs as you like.

</pre><p>呈现的输出如下所示：&nbsp;</p><p>Here’s a simple footnote,[^1] and here’s a longer one.[^bignote]</p><p>[^1]: This is the first footnote.</p><p>[^bignote]: Here’s one with multiple paragraphs and code.</p><p>&nbsp;&nbsp;Indent paragraphs to include them in the footnote.</p><p>&nbsp;&nbsp;&nbsp;{ my code }</p><ol><li>&nbsp;&nbsp;Add as many paragraphs as you like.</li></ol>]]>
    </description>
    <link>https://aiovt.us.kg/i/makedownyufa-VVtzsF-Stlu/</link>
    <itunes:episodeType>full</itunes:episodeType>
  </item>
  <item>
    <title>群辉相册</title>
    <guid>MRuc461QmAf</guid>
    <pubDate>Sat, 13 Jul 2024 16:37:50 GMT</pubDate>
    <itunes:explicit>false</itunes:explicit>
    <description>
      <![CDATA[<h6><img src="https://tele-tuchuang.pages.dev/file/83e21fb93e624bb57a6cf.png"></h6><h6>每个人都是生命中的过路人，而我也在旅途中</h6><h4>一、黑群晖Synology Photos人脸识别补丁</h4><p>1、先安装synology photos 套件</p><p>2、安装synology photos后先进入套件中心，停用synology photos套件</p><p>3、打开ssh软件，通过ssh进入，输入以下命令</p><pre class="ql-syntax" spellcheck="false">sudo -i
synopkgctl stop SynologyPhotos
wget http://code.imnks.com/face/PatchELFSharp
chmod +x PatchELFSharp
# support face and concept

./PatchELFSharp “/var/packages/SynologyPhotos/target/usr/lib/libsynophoto-plugin-platform.so.1.0” “_ZN9synophoto6plugin8platform20IsSupportedIENetworkEv” “B8 00 00 00 00 C3”
# force to support concept

./PatchELFSharp “/var/packages/SynologyPhotos/target/usr/lib/libsynophoto-plugin-platform.so.1.0” “_ZN9synophoto6plugin8platform18IsSupportedConceptEv” “B8 01 00 00 00 C3”
# force no Gpu

./PatchELFSharp “/var/packages/SynologyPhotos/target/usr/lib/libsynophoto-plugin-platform.so.1.0” “_ZN9synophoto6plugin8platform23IsSupportedIENetworkGpuEv” “B8 00 00 00 00 C3”
wget http://code.imnks.com/face/1.6.1-0641/libsynophoto-plugin-platform.so.1.0 -O /var/packages/SynologyPhotos/target/usr/lib/libsynophoto-plugin-platform.so.1.0 &amp;&amp; synopkgctl stop SynologyPhotos &amp;&amp; synopkgctl start SynologyPhotos
synopkgctl start SynologyPhotos
</pre><p>4、SSH输入以上代码后，重新启动synology photos套件</p><p>5、进入synology photos套件点击重新索引</p><p>6、解决缩略图不显示：</p><p>通过社群安装ffmpeg6.0套件</p><p>安装后，进入ssh，运行一下代码</p><pre class="ql-syntax" spellcheck="false">mv /usr/bin/ffmpeg /usr/bin/ffmpeg.bak
ln -s /var/packages/ffmpeg/target/bin/ffmpeg /usr/bin/ffmpeg
</pre><p>运行以上代码后，“控制面板”-“共享文件夹”，为“photo”和“homes”设置“sc-ffmpge”的“可读写”访问权限；登录Synology Photos，进入“设置”-“个人”，点击“重建索引”</p><h4>二、激活Advanced Media Extensions</h4><p>1、安装 Advanced Media Extensions 套件</p><p>2、打开控制面板，并进入任务计划</p><p>打开自定义的脚本，在用户定义脚本里面输入：</p><p>DSM7.1</p><p>3.0.1.2004 版本AME破解补丁</p><pre class="ql-syntax" spellcheck="false">curl -skL http://jimostudio.link:9020/chfs/shared/AME/AME712004.py | python
</pre><p>DSM7.2</p><p>3.1.0.3005 版本AME破解补丁</p><pre class="ql-syntax" spellcheck="false">curl -skL http://jimostudio.link:9020/chfs/shared/AME/AME723005.py | python
</pre><p><img src="https://telegraph-image-82u.pages.dev/file/e132a7a6edf0effa8d767.png"></p><p><img src="https://telegraph-image-82u.pages.dev/file/62152c79c8597f6c27ddd.png"></p><p><img src="https://telegraph-image-82u.pages.dev/file/fd4a9badf5bb2562992e7.png"></p><p>3、运行脚本</p><p>4、运行脚本后，等大概1-3分钟，打开 Advanced Media Extensions 套件 可以看到已经激活</p>]]>
    </description>
    <link>https://aiovt.us.kg/i/xiangce-MRuc461QmAf/</link>
    <itunes:episodeType>full</itunes:episodeType>
  </item>
  <item>
    <title>玩客云刷机</title>
    <guid>pU7arWzgHku</guid>
    <pubDate>Sat, 13 Jul 2024 16:36:46 GMT</pubDate>
    <itunes:explicit>false</itunes:explicit>
    <description>
      <![CDATA[<h6><img src="https://tele-tuchuang.pages.dev/file/0bc67778e2b275dbe371d.png"></h6><h6>你配得上世间所有的美好，我将携漫天星辰向你涌来</h6><h4>一、<a href="https://github.com/hzyitc/armbian-onecloud" rel="noopener noreferrer" target="_blank">固件下载</a></h4><h4>固件版本说明</h4><ul><li>current（推荐）：稳定版，一般指代当前官方推荐的稳定版本，经过了充分的测试和优化，确保兼容性和稳定性较高</li><li>Edge：开发版，一般是让高级用户或开发者提前体验新功能，并提供反馈，包含了最新的功能更新或者实验性特性，但相对稳定性可能会较低，可能存在未知的问题</li><li>带“burn”（推荐）：在Armbian或类似的基于Linux的嵌入式设备固件发布中，带有“burn”字样的文件通常是指直接烧录（Flash）用的镜像文件。这类文件往往是针对特定硬件设计的，可以直接通过SD卡、USB闪存或其他方式一次性将整个操作系统及配置写入</li><li>设备内部的存储介质（如eMMC、NAND Flash等）。它们通常是经过特殊处理的二进制映像文件，包含了引导加载程序、内核以及根文件系统等必要的系统组件</li><li>带“minimal”（按需）：有"minimal"字样的刷机包通常指的是一个精简版或最小化安装版本的固件。这种固件镜像包含了运行操作系统和特定应用所必需的最基础软件包，去除了不必要的服务、图形界面和其他非核心组件</li></ul><h4>二、刷机方法</h4><ul><li>打开USB_Burning_Tool软件</li><li>左上角文件&gt;导入烧录包，选择下载的固件，点击开始</li><li>双公头USB数据线，一头插靠近HDMI接口USB，一头电脑USB</li><li>短接刷机点通电到3%再松手，直到刷机完成</li><li>刷机完成后立马点击停止后断电，拔下数据线</li></ul><p>用户名root，密码1234，登录后提示需要更改密root的初始密码，自行设置，更改完密码后，会提示创建账户，我们直接Ctrl+C取消</p><h4>三、时区设置</h4><p>设置时区</p><pre class="ql-syntax" spellcheck="false">cp /usr/share/zoneinfo/Asia/Shanghai  /etc/localtime
</pre><p>查看时间</p><pre class="ql-syntax" spellcheck="false">date -R
</pre><h4>四、 一键更换国内源</h4><pre class="ql-syntax" spellcheck="false">bash &lt;(curl -sSL https://linuxmirrors.cn/main.sh)
</pre><h4>五、灯光控制</h4><pre class="ql-syntax" spellcheck="false">echo 0 &gt;/sys/class/leds/onecloud\:blue\:alive/brightness
echo 0 &gt;/sys/class/leds/onecloud\:green\:alive/brightness
echo 0 &gt;/sys/class/leds/onecloud\:red\:alive/brightness
</pre><h4>六、软件安装</h4><h5>casaos</h5><pre class="ql-syntax" spellcheck="false">wget -qO- https://get.casaos.io | bash
</pre><h5>Qbittorrent</h5><pre class="ql-syntax" spellcheck="false">sudo apt install qbittorrent-nox
</pre><p>执行以下命令，通过文本编辑器打开qBittorrent服务文件</p><pre class="ql-syntax" spellcheck="false">vim /etc/systemd/system/qbittorrent.service
</pre><p>输入以下内容（配置信息）后保存</p><pre class="ql-syntax" spellcheck="false">[Unit]
Description=qBittorrent Daemon Service
After=network.target
[Service]
User=root
ExecStart=/usr/bin/qbittorrent-nox
ExecStop=/usr/bin/killall -w qbittorrent-nox
[Install]
WantedBy=multi-user.target
</pre><p>执行以下命令，更新刚刚配置的服务，设置开机启动以及现在启动该服务</p><pre class="ql-syntax" spellcheck="false">sudo systemctl daemon-reload
sudo systemctl enable qbittorrent.service
sudo systemctl start qbittorrent.service
</pre><h5>Cpolar</h5><pre class="ql-syntax" spellcheck="false">curl -L https://www.cpolar.com/static/downloads/install-release-cpolar.sh | sudo bash
cpolar version
</pre><p>登录cpolar官网后台，点击左侧的验证，查看自己的认证token，之后将token贴在命令行里</p><pre class="ql-syntax" spellcheck="false">cpolar authtoken xxxxxxx
</pre><p>开机自启</p><pre class="ql-syntax" spellcheck="false">sudo systemctl enable cpolar
sudo systemctl start cpolar
</pre><h5>openwrt</h5><p>镜像推荐：</p><pre class="ql-syntax" spellcheck="false">jyhking/onecloud:1.1
 
sulinggg/openwrt:arm_cortex-a5_vfpv4
 
xuanaimai/onecloud:21-05-29
</pre><p>打开网卡混杂模式</p><pre class="ql-syntax" spellcheck="false">ip link set eth0 promisc on
</pre><p>创建OpenWrt网络(自行替换网段，网关)</p><pre class="ql-syntax" spellcheck="false">docker network create -d macvlan --subnet=192.168.10.0/24 --gateway=192.168.10.1 -o parent=eth0 openwrt
</pre><p>下载镜像包至root</p><pre class="ql-syntax" spellcheck="false">wget https://dl.openwrt.ai/releases/targets/meson/meson8b/openwrt-02.01.2024-meson-meson8b-thunder-onecloud-rootfs.tar.gz
</pre><p>生成镜像</p><pre class="ql-syntax" spellcheck="false">docker import openwrt-02.01.2024-meson-meson8b-thunder-onecloud-rootfs.tar.gz onecloud/openwrt
</pre><p>安装并启动容器</p><pre class="ql-syntax" spellcheck="false">docker run --restart always --name openwrt -d --network openwrt --privileged onecloud/openwrt /sbin/init
</pre><p>修改默认IP</p><pre class="ql-syntax" spellcheck="false">#进入容器
 
docker exec -it openwrt bash
 
#打开网络配置文件
 
nano /etc/config/network
 
#重启网络
 
/etc/init.d/network restart
</pre><h5>ddns-to</h5><pre class="ql-syntax" spellcheck="false">docker run -d --name=ddnsto --restart always --network host -e TOKEN=&lt;自己的token&gt; -e DEVICE_IDX=0 linkease/ddnsto:3.0.0
</pre><h5>1panel</h5><pre class="ql-syntax" spellcheck="false">curl -sSL https://resource.fit2cloud.com/1panel/package/quick_start.sh -o quick_start.sh &amp;&amp; sudo bash quick_start.sh
Copy
</pre><h5>docker</h5><pre class="ql-syntax" spellcheck="false">apt install docker.io
</pre><h4>七、端口：</h4><ul><li>CasaOS：80</li><li>Cpolar：9200</li><li>qBittorrent ：8080</li></ul><p><br></p>]]>
    </description>
    <link>https://aiovt.us.kg/i/shuaji-pU7arWzgHku/</link>
    <itunes:episodeType>full</itunes:episodeType>
  </item>
  <item>
    <title>linux换源</title>
    <guid>5YQmEMZDpnN</guid>
    <pubDate>Sat, 13 Jul 2024 16:35:28 GMT</pubDate>
    <itunes:explicit>false</itunes:explicit>
    <description>
      <![CDATA[<h6><img src="https://tele-tuchuang.pages.dev/file/42e617dc41311c23da5e8.png"></h6><h6>总要热爱点什么，不能被这无聊的生活吞没</h6><h4>一、一键更换国内源</h4><pre class="ql-syntax" spellcheck="false">bash &lt;(curl -sSL https://linuxmirrors.cn/main.sh)
</pre><h4>二、armbian：</h4><pre class="ql-syntax" spellcheck="false">vim /etc/apt/sources.list 
</pre><h5>清华</h5><pre class="ql-syntax" spellcheck="false">deb https://mirrors.tuna.tsinghua.edu.cn/armbian buster main utils
deb-src https://mirrors.tuna.tsinghua.edu.cn/armbian buster main utils

deb https://mirrors.tuna.tsinghua.edu.cn/debian/ buster main non-free contrib
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-updates main non-free contrib
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-backports main non-free contrib
deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ buster main non-free contrib
deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-updates main non-free contrib
deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-backports main non-free contrib

deb http://security.debian.org/ buster/updates main
deb-src http://security.debian.org/ buster/updates main
</pre><h5>阿里</h5><pre class="ql-syntax" spellcheck="false">deb http://mirrors.aliyun.com/debian/ bullseye main contrib non-free
#deb-src http://mirrors.aliyun.com/debian/ bullseye main contrib non-free

deb http://mirrors.aliyun.com/debian/ bullseye-updates main contrib non-free
#deb-src http://mirrors.aliyun.com/debian/ bullseye-updates main contrib non-free

deb http://mirrors.aliyun.com/debian/ bullseye-backports main contrib non-free
#deb-src http://mirrors.aliyun.com/debian/ bullseye-backports main contrib non-free

deb http://mirrors.aliyun.com/debian-security/ bullseye-security main contrib non-free
#deb-src http://mirrors.aliyun.com/debian-security/ bullseye-security main contrib non-free

</pre><h4>三、ubuntu：</h4><pre class="ql-syntax" spellcheck="false">vim /etc/apt/sources.list
########   Ubuntu22.04LTS 清华镜像源   ###############
# 默认注释了源码镜像以提高 apt update 速度，如有需要可自行取消注释
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-updates main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-updates main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-backports main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-backports main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-security main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-security main restricted universe multiverse
 
# 预发布软件源，不建议启用
# deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-proposed main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-proposed main restricted universe multiverse
########   Ubuntu22.04 阿里云镜像源   ###############
deb http://mirrors.aliyun.com/ubuntu/ jammy main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ jammy main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ jammy-security main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ jammy-security main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ jammy-updates main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ jammy-updates main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ jammy-proposed main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ jammy-proposed main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ jammy-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ jammy-backports main restricted universe multiverse
########   Ubuntu22.04 中科大镜像源   ###############
deb https://mirrors.ustc.edu.cn/ubuntu/ jammy main restricted universe multiverse
deb-src https://mirrors.ustc.edu.cn/ubuntu/ jammy main restricted universe multiverse
deb https://mirrors.ustc.edu.cn/ubuntu/ jammy-updates main restricted universe multiverse
deb-src https://mirrors.ustc.edu.cn/ubuntu/ jammy-updates main restricted universe multiverse
deb https://mirrors.ustc.edu.cn/ubuntu/ jammy-backports main restricted universe multiverse
deb-src https://mirrors.ustc.edu.cn/ubuntu/ jammy-backports main restricted universe multiverse
deb https://mirrors.ustc.edu.cn/ubuntu/ jammy-security main restricted universe multiverse
deb-src https://mirrors.ustc.edu.cn/ubuntu/ jammy-security main restricted universe multiverse
deb https://mirrors.ustc.edu.cn/ubuntu/ jammy-proposed main restricted universe multiverse
deb-src https://mirrors.ustc.edu.cn/ubuntu/ jammy-proposed main restricted universe multiverse
########   Ubuntu22.04 网易163镜像源   ###############
deb http://mirrors.163.com/ubuntu/ jammy main restricted universe multiverse
deb http://mirrors.163.com/ubuntu/ jammy-security main restricted universe multiverse
deb http://mirrors.163.com/ubuntu/ jammy-updates main restricted universe multiverse
deb http://mirrors.163.com/ubuntu/ jammy-proposed main restricted universe multiverse
deb http://mirrors.163.com/ubuntu/ jammy-backports main restricted universe multiverse
deb-src http://mirrors.163.com/ubuntu/ jammy main restricted universe multiverse
deb-src http://mirrors.163.com/ubuntu/ jammy-security main restricted universe multiverse
deb-src http://mirrors.163.com/ubuntu/ jammy-updates main restricted universe multiverse
deb-src http://mirrors.163.com/ubuntu/ jammy-proposed main restricted universe multiverse
deb-src http://mirrors.163.com/ubuntu/ jammy-backports main restricted universe multiverse
Copy
sudo apt update
sudo apt upgrade
</pre><p><br></p>]]>
    </description>
    <link>https://aiovt.us.kg/i/linuxhuanyuan-5YQmEMZDpnN/</link>
    <itunes:episodeType>full</itunes:episodeType>
  </item>
  <item>
    <title>docker换源</title>
    <guid>dHvPxAZ_oi-</guid>
    <pubDate>Sat, 13 Jul 2024 16:33:10 GMT</pubDate>
    <itunes:explicit>false</itunes:explicit>
    <description>
      <![CDATA[<h6><img src="https://tele-tuchuang.pages.dev/file/1516896592fa75b268dc7.png"></h6><h6>一点星光，在心上就能反射出太阳</h6><h4>一、snap版docker</h4><p>修改：</p><pre class="ql-syntax" spellcheck="false">vim /var/snap/docker/current/config/daemon.json
</pre><h4>二、apt版docker</h4><pre class="ql-syntax" spellcheck="false">vim /etc/docker/daemon.json
</pre><p>docker镜像：</p><p>阿里云</p><pre class="ql-syntax" spellcheck="false">{
  "registry-mirrors": ["https://dg1w94af.mirror.aliyuncs.com"]
}
</pre><p>其他</p><pre class="ql-syntax" spellcheck="false">{
    "registry-mirrors" : [
             "https://registry.docker-cn.com",
             "https://docker.mirrors.ustc.edu.cn",
             "http://hub-mirror.c.163.com",
             "https://cr.console.aliyun.com/"
  ]
}
{
    "registry-mirrors":[
             "https://hub-mirror.c.163.com/",
             "https://docker.mirrors.ustc.edu.cn/"
                        ]
}

</pre><p>重启docker以及daemon</p><pre class="ql-syntax" spellcheck="false">systemctl daemon-reload
systemctl restart docker

</pre>]]>
    </description>
    <link>https://aiovt.us.kg/i/dockerhuanyuan-dHvPxAZ_oi-/</link>
    <itunes:episodeType>full</itunes:episodeType>
  </item>
  <item>
    <title>小雅安装</title>
    <guid>CfOK-RQQF-r</guid>
    <pubDate>Sat, 13 Jul 2024 16:30:24 GMT</pubDate>
    <itunes:explicit>false</itunes:explicit>
    <description>
      <![CDATA[<h6><img src="https://tele-tuchuang.pages.dev/file/29d5649b2a58ffc430d40.png"></h6><h6>梦如同黎明的泡沫一样逐渐消失</h6><h4>一、<a href="https://alist.nn.ci/zh/guide/drivers/aliyundrive.html#%E5%88%B7%E6%96%B0%E4%BB%A4%E7%89%8C" rel="noopener noreferrer" target="_blank">阿里云盘token获取</a></h4><h4>二、<a href="https://alist.nn.ci/tool/aliyundrive/request.html" rel="noopener noreferrer" target="_blank">阿里云盘opentoken获取</a></h4><h4>三、一键安装：</h4><p>一键安装和更新容器，标准模式，打开端口 5678</p><pre class="ql-syntax" spellcheck="false">bash -c "$(curl http://docker.xiaoya.pro/update_new.sh)"
</pre><p>一键安装和更新容器，host模式（推荐，软路由和NAS上更少网络故障，打开端口 5678）</p><pre class="ql-syntax" spellcheck="false">bash -c "$(curl http://docker.xiaoya.pro/update_new.sh)" -s host
</pre><h4>四、docker compose安装：</h4><pre class="ql-syntax" spellcheck="false">version: '3'

services:
  xiaoya:
    image: xiaoyaliu/alist
    container_name: xiaoya
    restart: unless-stopped
    ports:
      - 8765:80
    volumes:
      - ./data:/data
</pre><p>执行如下命令：</p><pre class="ql-syntax" spellcheck="false"># 新建文件夹 xiaoya 和 子目录
mkdir -p /volume1/docker/xiaoya/data

# 进入 xiaoya 目录
cd /volume1/docker/xiaoya

# 将 mytoken.txt 、 myopentoken.txt 、 temp_transfer_folder_id.txt 放入 /data 目录

# 将 docker-compose.yml 放入当前目录

# 一键启动
docker-compose up -d
Copy
</pre><p>webdav 账号密码 用户: guest 密码: guest_Api789</p>]]>
    </description>
    <link>https://aiovt.us.kg/i/anz-CfOK-RQQF-r/</link>
    <itunes:episodeType>full</itunes:episodeType>
  </item>
  <item>
    <title>HELLO WORLD</title>
    <guid>mAihFlJLq3e</guid>
    <pubDate>Thu, 11 Jul 2024 15:09:36 GMT</pubDate>
    <itunes:explicit>false</itunes:explicit>
    <description>
      <![CDATA[<p>### 风里有花香，身边有最爱的人</p>]]>
    </description>
    <link>https://aiovt.us.kg/i/hello-worl-mAihFlJLq3e/</link>
    <itunes:episodeType>full</itunes:episodeType>
    <enclosure url="https://r2public.aiovt.us.kg/cms/production/media/image-67d1798eb535038dd8c3497f5c449f3a.png" type="image/png" length="1995920"/>
  </item>
</channel>
</rss>