<?xml version="1.0" encoding="utf-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><title>互换策划</title><link>http://0594.live/</link><description>SwapPlan</description><item><title>mysql升级后字符集变化怎么办_mysql编码问题解决</title><link>http://0594.live/?id=19</link><description>&lt;blockquote&gt;MySQL升级后默认字符集变为utf8mb4，需统一服务端、数据库、表、列及客户端连接的字符集与排序规则为utf8mb4_unicode_ci；检查运行时配置而非仅my.cnf，逐表转换存量数据并确保应用连接显式声明utf8mb4。&lt;/blockquote&gt;&lt;p&gt;&lt;img src=&quot;https://img.php.cn/upload/article/000/969/633/176646972244046.jpeg&quot; alt=&quot;mysql升级后字符集变化怎么办_mysql编码问题解决&quot;/&gt;&lt;/p&gt;&lt;p&gt;MySQL升级后字符集变化，最常见的是默认字符集从&lt;code&gt;latin1&lt;/code&gt;变成&lt;code&gt;utf8mb4&lt;/code&gt;，导致旧表、旧连接或程序读写乱码。核心不是“改回去”，而是统一&lt;a style=&quot;color:#f60; text-decoration:underline;&quot; title=&quot;编码&quot; href=&quot;https://www.php.cn/zt/16108.html&quot; target=&quot;_blank&quot;&gt;编码&lt;/a&gt;链路：服务端、数据库、表、列、客户端连接，全部对齐&lt;code&gt;utf8mb4&lt;/code&gt;并启用&lt;code&gt;utf8mb4_unicode_ci&lt;/code&gt;（或&lt;code&gt;utf8mb4_0900_as_cs&lt;/code&gt;）排序规则。&lt;/p&gt;&lt;h3&gt;检查当前实际字符集配置&lt;/h3&gt;&lt;p&gt;别只看&lt;code&gt;my.cnf&lt;/code&gt;，升级后&lt;a style=&quot;color:#f60; text-decoration:underline;&quot; title=&quot;配置文件&quot; href=&quot;https://www.php.cn/zt/21155.html&quot; target=&quot;_blank&quot;&gt;配置文件&lt;/a&gt;可能没生效，优先查运行时值：&lt;/p&gt;&lt;ul class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;执行&lt;code&gt;SHOW VARIABLES LIKE &amp;#39;character_set%&amp;#39;;&lt;/code&gt;，重点关注&lt;code&gt;character_set_server&lt;/code&gt;、&lt;code&gt;character_set_database&lt;/code&gt;、&lt;code&gt;character_set_client&lt;/code&gt;、&lt;code&gt;character_set_connection&lt;/code&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;执行&lt;code&gt;SHOW VARIABLES LIKE &amp;#39;collation%&amp;#39;;&lt;/code&gt;，确认&lt;code&gt;collation_server&lt;/code&gt;和&lt;code&gt;collation_database&lt;/code&gt;是否为&lt;code&gt;utf8mb4_*&lt;/code&gt;系列&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;对关键表运行&lt;code&gt;SHOW CREATE TABLE 表名;&lt;/code&gt;，查看表和字段是否仍为&lt;code&gt;CHARSET=latin1&lt;/code&gt;或&lt;code&gt;utf8&lt;/code&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;h3&gt;安全升级存量表到utf8mb4&lt;/h3&gt;&lt;p&gt;不能直接&lt;code&gt;ALTER DATABASE ... CHARACTER SET = utf8mb4&lt;/code&gt;就完事——它只改默认值，不影响已有表结构。必须逐表转换：&lt;/p&gt;&lt;ul class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;先备份：&lt;code&gt;mysqldump -u用户 -p --default-character-set=utf8mb4 数据库名 &amp;gt; backup.sql&lt;/code&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;修改表字符集：&lt;code&gt;ALTER TABLE 表名 CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;&lt;/code&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;若字段是&lt;code&gt;TEXT&lt;/code&gt;/&lt;code&gt;VARCHAR&lt;/code&gt;且原长度接近上限（如&lt;code&gt;VARCHAR(255)&lt;/code&gt;），注意&lt;code&gt;utf8mb4&lt;/code&gt;单字符最多占4&lt;a style=&quot;color:#f60; text-decoration:underline;&quot; title=&quot;字节&quot; href=&quot;https://www.php.cn/zt/16298.html&quot; target=&quot;_blank&quot;&gt;字节&lt;/a&gt;，可能触发行大小超限，需酌情减小长度或启用&lt;code&gt;innodb_large_prefix=ON&lt;/code&gt;（MySQL 5.7.7+默认开启）&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;h3&gt;确保应用连接使用utf8mb4&lt;/h3&gt;&lt;p&gt;即使服务端设对了，客户端不声明，照样走默认&lt;code&gt;latin1&lt;/code&gt;。不同语言处理方式不同：&lt;/p&gt;&lt;div class=&quot;aritcle_card&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;img src=&quot;https://img.php.cn/upload/ai_manual/001/246/273/68b6d6c8bb4a9796.jpeg&quot; alt=&quot;趣问问AI&quot;/&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;div class=&quot;aritcle_card_info&quot;&gt;&lt;a href=&quot;https://www.php.cn/ai/1905&quot;&gt;趣问问AI&lt;/a&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;p&gt;免费可用的国内版chat，AI写作和AI对话&lt;/p&gt;&lt;div class=&quot;&quot;&gt;&lt;img src=&quot;https://www.php.cn/static/images/card_xiazai.png&quot; alt=&quot;趣问问AI&quot;/&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;97
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/div&gt;&lt;/div&gt;&lt;a href=&quot;https://www.php.cn/ai/1905&quot; class=&quot;aritcle_card_btn&quot;&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;查看详情
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;img src=&quot;https://www.php.cn/static/images/cardxiayige-3.png&quot; alt=&quot;趣问问AI&quot;/&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/a&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/div&gt;&lt;ul class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;PHP PDO：DSN中加&lt;code&gt;;charset=utf8mb4&lt;/code&gt;，例如&lt;code&gt;mysql:host=localhost;dbname=test;charset=utf8mb4&lt;/code&gt;；或连接后执行&lt;code&gt;$pdo-&amp;gt;exec(&amp;quot;SET NAMES utf8mb4&amp;quot;);&lt;/code&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Java JDBC：URL加参数&lt;code&gt;?characterEncoding=utf8mb4&amp;amp;serverTimezone=UTC&lt;/code&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Python PyMySQL/MySQLdb：创建连接时指定&lt;code&gt;charset=&amp;#39;utf8mb4&amp;#39;&lt;/code&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;命令行客户端：启动时加&lt;code&gt;--default-character-set=utf8mb4&lt;/code&gt;，或在&lt;code&gt;my.cnf&lt;/code&gt;的&lt;code&gt;[client]&lt;/code&gt;段写&lt;code&gt;default-character-set=utf8mb4&lt;/code&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;h3&gt;配置文件（my.cnf）正确写法示例&lt;/h3&gt;&lt;p&gt;避免只在&lt;code&gt;[mysqld]&lt;/code&gt;段设置，要覆盖服务端、客户端、连接三端：&lt;/p&gt;&lt;p&gt;改完重启MySQL，并用前面的&lt;code&gt;SHOW VARIABLES&lt;/code&gt;验证是否全部生效。&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Tue, 23 Dec 2025 14:02:02 +0800</pubDate></item><item><title>减少数据库压力_mysql系统架构优化</title><link>http://0594.live/?id=18</link><description>&lt;blockquote&gt;减少 MySQL 压力需从架构设计、查询优化、连接控制、分库分表四层面系统施策：读写分离分流负载，精准索引与慢查治理，连接池限流防雪崩，冷热分离与分片应对数据增长。&lt;/blockquote&gt;&lt;p&gt;&lt;img src=&quot;https://img.php.cn/upload/article/000/969/633/176646948326782.jpeg&quot; alt=&quot;如何减少数据库压力_mysql系统架构优化&quot;/&gt;&lt;/p&gt;&lt;p&gt;减少 MySQL 数据库压力，核心在于“让数据库少做事、做对事、分担事”。不是一味加机器或调参数，而是从架构设计、查询行为、数据组织和资源协同四个层面系统优化。&lt;/p&gt;&lt;h3&gt;合理拆分读写流量&lt;/h3&gt;&lt;p&gt;MySQL 默认主从结构天然适合读写分离。写操作集中到主库，读请求分散到多个从库，能显著降低单点负载。&lt;/p&gt;&lt;ul class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;应用层需明确区分读写语句，避免在从库执行 INSERT/UPDATE/DELETE；&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;使用中间件（如 ProxySQL、ShardingSphere）或客户端&lt;a style=&quot;color:#f60; text-decoration:underline;&quot; title=&quot;路由&quot; href=&quot;https://www.php.cn/zt/18172.html&quot; target=&quot;_blank&quot;&gt;路由&lt;/a&gt;逻辑自动识别并转发；&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;注意从库延迟问题，对一致性要求高的读（如刚下单查订单），应强制走主库；&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;从库可配置不同规格：高配节点处理报表类慢查询，低配节点承接简单列表页请求。&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;h3&gt;精准优化慢查询与索引&lt;/h3&gt;&lt;p&gt;80% 的压力往往来自 20% 的低效 SQL。不优化查询，再好的硬件也扛不住。&lt;/p&gt;&lt;ul class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;开启 slow_query_log，设置 long_query_time ≤ 1s，定期分析 pt-query-digest 输出；&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;用 EXPLAIN 分析执行计划，重点看 type（尽量到 range 或 const）、rows（扫描行数越少越好）、key（是否命中索引）、Extra（避免 Using filesort / Using temporary）；&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;联合索引遵循最左前缀原则，把高频过滤字段放前面；区分度高的字段更适合建索引；&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;避免 SELECT *，只取必要字段；大字段（TEXT/BLOB）单独建表或&lt;a style=&quot;color:#f60; text-decoration:underline;&quot; title=&quot;异步加载&quot; href=&quot;https://www.php.cn/zt/34044.html&quot; target=&quot;_blank&quot;&gt;异步加载&lt;/a&gt;；&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;分页深度大时（如 LIMIT 10000,20），改用游标分页（记录上一页最大 ID）或延迟关联优化。&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;h3&gt;控制连接与并发，避免雪崩&lt;/h3&gt;&lt;p&gt;过多连接不仅耗内存，还会引发锁竞争和上下文切换开销，导致整体响应变慢。&lt;/p&gt;&lt;div class=&quot;aritcle_card&quot;&gt;&lt;a class=&quot;aritcle_card_img&quot; href=&quot;https://www.php.cn/ai/1916&quot;&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;img src=&quot;https://img.php.cn/upload/ai_manual/001/246/273/68b6d6112eea9110.png&quot; alt=&quot;Bertha.ai&quot;/&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/a&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;div class=&quot;aritcle_card_info&quot;&gt;&lt;a href=&quot;https://www.php.cn/ai/1916&quot;&gt;Bertha.ai&lt;/a&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;p&gt;一款专为WordPress打造的AI内容和图像创建工具&lt;/p&gt;&lt;div class=&quot;&quot;&gt;&lt;img src=&quot;https://www.php.cn/static/images/card_xiazai.png&quot; alt=&quot;Bertha.ai&quot;/&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;120
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/div&gt;&lt;/div&gt;&lt;a href=&quot;https://www.php.cn/ai/1916&quot; class=&quot;aritcle_card_btn&quot;&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;查看详情
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;img src=&quot;https://www.php.cn/static/images/cardxiayige-3.png&quot; alt=&quot;Bertha.ai&quot;/&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/a&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/div&gt;&lt;ul class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;应用端使用连接池（如 HikariCP），设置合理的 maxPoolSize（通常 10–30，依业务 IO 特性调整），禁止直连；&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;MySQL 端调优 w&lt;a style=&quot;color:#f60; text-decoration:underline;&quot; title=&quot;ai&quot; href=&quot;https://www.php.cn/zt/17539.html&quot; target=&quot;_blank&quot;&gt;ai&lt;/a&gt;t_timeout 和 interactive_timeout（建议 300–600 秒），及时回收空闲连接；&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;监控 Threads_running，持续高于 30–50 需警惕，配合 show proce&lt;a style=&quot;color:#f60; text-decoration:underline;&quot; title=&quot;ssl&quot; href=&quot;https://www.php.cn/zt/17079.html&quot; target=&quot;_blank&quot;&gt;ssl&lt;/a&gt;ist 查看阻塞源头；&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;对批量导入、统计任务等重负载操作，错峰执行，或限制并发线程数（如用 pt-archiver 控制速率）。&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;h3&gt;分库分表与冷热分离&lt;/h3&gt;&lt;p&gt;单表超千万行或单库超 100GB 后，常规优化边际效益下降，需考虑水平或垂直切分。&lt;/p&gt;&lt;ul class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;分表优先考虑业务维度：如按 user_id 取模分 16 张订单表，或按时间（月/季度）归档历史订单；&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;分库需配套解决分布式事务（Seata）、跨库 JOIN（尽量规避，改用应用层组装）、全局 ID（雪花算法或号段模式）；&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;冷热分离：将 1 年前订单移入历史库，主库只保留活跃数据，大幅提升热区查询效率；&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;静态数据（如省份字典）缓存到应用本地或 Redis，彻底免除数据库访问。&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Tue, 23 Dec 2025 13:58:02 +0800</pubDate></item><item><title>Jenkins Publish Over SSH实战指南：常见问题与解决方案</title><link>http://0594.live/?id=11</link><description>&lt;p&gt;最近计划对Jenkins的构建项目进行优化，将传统的&lt;code&gt;scp&lt;/code&gt;命令替换为Publish Over SSH插件来执行远程命令和文件传输操作，从而提升安全性和简化流程。本文将分享我在使用Jenkins Publish Over SSH插件过程中积累的一些经验以及踩坑记录。&lt;/p&gt;&lt;h3&gt;Jenkins安装Publish Over SSH插件&lt;/h3&gt;&lt;p&gt;在Jenkins后台【系统管理 - 插件管理】搜索&lt;strong&gt;Publish Over SSH&lt;/strong&gt;进行安装并重启Jenkins即可生效。&lt;/p&gt;&lt;p&gt;&lt;img src=&quot;https://img.rss.ink/imgs/2025/03/07/848327d5f2259daf.png&quot; alt=&quot;848327d5f2259daf.png&quot;/&gt;&lt;/p&gt;&lt;h3&gt;设置Publish Over SSH&lt;/h3&gt;&lt;p&gt;在Jenkins后台【系统管理 - 系统配置】，找到&lt;strong&gt;SSH Servers&lt;/strong&gt;填写目标服务器的IP、用户名、密码等信息，如下图。&lt;/p&gt;&lt;p&gt;&lt;img src=&quot;https://img.rss.ink/imgs/2025/03/07/f26dd88c831d1cb1.png&quot; alt=&quot;f26dd88c831d1cb1.png&quot; style=&quot;width: 797px; height: 699px;&quot; width=&quot;797&quot; height=&quot;699&quot;/&gt;&lt;/p&gt;&lt;p&gt;唯一需要注意的是&lt;code&gt;Remote Directory&lt;/code&gt;这里，如果你不填写，那么你在进行文件拷贝的时候即使你填写的目标路径是绝对路径，他也会在前面加上家目录。&lt;/p&gt;&lt;p&gt;假如你&lt;code&gt;Remote Directory&lt;/code&gt;留空，服务器用户名配置的&lt;code&gt;test&lt;/code&gt;，那么会出现下面的情况：&lt;/p&gt;&lt;ul class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;比如你目标路径填写：&lt;code&gt;/tmp&lt;/code&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;实际上他在拷贝的时候目标路径变成了&lt;code&gt;$HOME/tmp&lt;/code&gt;，也就是&lt;code&gt;/home/test/tmp&lt;/code&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;所以这里需要尤其注意，个人建议填写&lt;code&gt;/&lt;/code&gt;路径，这样就是实际的绝对路径。&lt;/p&gt;&lt;h3&gt;构建任务中使用Publish Over SSH&lt;/h3&gt;&lt;p&gt;在创建构建任务的时候可以选择&lt;strong&gt;Send files or execute commands over SSH&lt;/strong&gt;来使用Publish Over SSH，比如我需要将构建后的&lt;code&gt;onenav.tar.gz&lt;/code&gt;文件拷贝到绝对路径：&lt;code&gt;/data/apps/dnmp/wwwroot/onenav.xiaoz.top/main/${VERSION}/&lt;/code&gt;，那么：&lt;/p&gt;&lt;ul class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;Source files：填写&lt;code&gt;onenav.tar.gz&lt;/code&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Remote directory：填写&lt;code&gt;/data/apps/dnmp/wwwroot/onenav.xiaoz.top/main/${VERSION}/&lt;/code&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;如果执行成功，但是目标路径下没有对应文件，需要注意以下几点：&lt;/p&gt;&lt;ol class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;可能是上面设置Publish Over SSH的时候&lt;code&gt;Remote Directory&lt;/code&gt;留空的原因&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;可能是源文件不存在，可增加打印调试查看结果&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;可能是目标路径没有对应的执行和写入权限&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;h3&gt;拷贝目录失败&lt;/h3&gt;&lt;p&gt;如果您需要使用Publish Over SSH拷贝目录，而不是单个或多个文件，可能会出现拷贝失败。&lt;/p&gt;&lt;ul class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;一开始我Source files填写的&lt;code&gt;test&lt;/code&gt;（test是一个实际且存在的目录）&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Remote directory填写的绝对路径&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;发现没有拷贝成功，并提示执行失败了，而且没有详细的错误原因，通过搜索得知，如果是要拷贝一个目录，及其下面的子文件，我们需要加上&lt;code&gt;/**/*&lt;/code&gt;，比如原来的&lt;code&gt;test&lt;/code&gt;需要修改为&lt;code&gt;test/**/*&lt;/code&gt;，如下图所示。&lt;/p&gt;&lt;p&gt;&lt;img src=&quot;https://img.rss.ink/imgs/2025/03/07/d3da05d62bebc35f.png&quot; alt=&quot;d3da05d62bebc35f.png&quot;/&gt;&lt;/p&gt;&lt;h3&gt;结语&lt;/h3&gt;&lt;p&gt;通过使用Jenkins的Publish
 Over 
SSH插件，我们能够显著提升远程文件传输与命令执行的安全性与效率。本文介绍了插件的安装、配置及常见问题的解决方法，如路径设置、权限检查和目录拷贝失败等。希望这些经验能帮助您更高效地优化Jenkins构建流程，减少踩坑成本，助力CI/CD实践更加顺畅！&lt;/p&gt;&lt;p&gt;此文部分内容参考了：&lt;/p&gt;&lt;ul class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;&lt;a href=&quot;https://plugins.jenkins.io/publish-over-ssh/&quot; rel=&quot;external nofollow&quot; target=&quot;_blank&quot;&gt;Publish Over SSH&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href=&quot;https://stackoverflow.com/questions/27051543/transferring-0-files-using-publish-over-ssh-plugin-in-jenkins&quot; rel=&quot;external nofollow&quot; target=&quot;_blank&quot;&gt;transferring 0 files using publish over SSH plugin in Jenkins&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href=&quot;https://stackoverflow.com/questions/40084174/jenkins-publish-over-ssh-plugin-how-to-copy-directory&quot; rel=&quot;external nofollow&quot; target=&quot;_blank&quot;&gt;Jenkins - Publish Over SSH Plugin: How to copy directory&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Fri, 07 Mar 2025 22:16:47 +0800</pubDate></item><item><title>你的电脑秒变 NAS 服务器，打造家庭影音中心：AiNAS</title><link>http://0594.live/?id=17</link><description>&lt;div&gt;&lt;article class=&quot;syl-article-base syl-page-article tt-article-content syl-device-pc&quot;&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;1&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;随着网盘吃相越来越难看，就很有必要入手一台 NAS 设备，拥有完全的支配权。如果你不想花费重金购买 NAS 设备，手头有闲置的电脑、NUC、MINI 主机等设备，通过安装 NAS 系统，也可以变成 NAS 服务器。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;3&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;不过目前市面大多数的 NAS 系统都不太适合新手小白折腾，需要刷机、配置各种功能、例如网络。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;5&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;那么有没有简单易用的 NAS 系统推荐？可以用这款鲁大师「AiNAS」轻量级 NAS 操作系统，它无需刷机，只需要在 Windows 上安装即可拥有 NAS 服务功能，并且还提供了 iOS、安卓、网页端支持。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot; data-track=&quot;7&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;color: #3DA742; --tt-darkmode-color: #3DA742;&quot;&gt;&lt;a class=&quot;pgc-link&quot; data-content=&quot;mp&quot; data-source=&quot;outerLink&quot; href=&quot;https://docs.qq.com/sheet/DUGx4ZE51a0FVaG5D?tab=BB08J2&quot; rel=&quot;noopener noreferrer noopener noreferrer&quot; target=&quot;_blank&quot;&gt;AiNAS - 会员专业版激活码&lt;/a&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot; data-track=&quot;8&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;数量有限，先到先得 &lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;11&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;color: #333333; --tt-darkmode-color: #A3A3A3;&quot;&gt;使用体验&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;12&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;安装「AiNAS」要求 Win10 以上系统，选择个人数据（图片、电影等）保存的位置、以及要将 「AiNAS」安装的位置。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class=&quot;pgc-img&quot;&gt;&lt;img src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-axegupay5k/6b5096a755094e66838a5782225db361~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;from=article.pc_detail&amp;lk3s=953192f4&amp;x-expires=1767151003&amp;x-signature=1UrzYySZlMpp0ebT0bGTv%2FPd9Bs%3D&quot; class=&quot;syl-page-img&quot; style=&quot;height: auto;&quot; data-src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-axegupay5k/6b5096a755094e66838a5782225db361~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;amp;from=article.pc_detail&amp;amp;lk3s=953192f4&amp;amp;x-expires=1767151003&amp;amp;x-signature=1UrzYySZlMpp0ebT0bGTv%2FPd9Bs%3D&quot;/&gt;&lt;p class=&quot;pgc-img-caption&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;/div&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;15&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;安装好后首次使用需要注册账号登录，点击任务栏右下角的「AiNAS」访问云桌面，点击它，会自动打开浏览器访问。使用需要授权绑定账号获取超级管理员权限，可以完全管控文件和系统配置。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class=&quot;pgc-img&quot;&gt;&lt;img src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/7ba39fac91b848e7930aa1cb8d0ae53d~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;from=article.pc_detail&amp;lk3s=953192f4&amp;x-expires=1767151003&amp;x-signature=PbH56M0YAm0s8dVqrEKjvjhKjb4%3D&quot; class=&quot;syl-page-img&quot; style=&quot;height: auto;&quot; data-src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/7ba39fac91b848e7930aa1cb8d0ae53d~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;amp;from=article.pc_detail&amp;amp;lk3s=953192f4&amp;amp;x-expires=1767151003&amp;amp;x-signature=PbH56M0YAm0s8dVqrEKjvjhKjb4%3D&quot;/&gt;&lt;p class=&quot;pgc-img-caption&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;/div&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;17&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;✅ 影视功能：&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;不少小伙伴使用 NAS 是为了家庭影音中心，在「AiNAS」里面也提供了影视功能，支持从本地添加影片。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class=&quot;pgc-img&quot;&gt;&lt;img src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/af6f7b4a7f2e4266846dc7b5f8168b3b~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;from=article.pc_detail&amp;lk3s=953192f4&amp;x-expires=1767151003&amp;x-signature=5CVaBg2hpVfxJjC5KhmaokBsGPY%3D&quot; class=&quot;syl-page-img&quot; style=&quot;height: auto;&quot; data-src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/af6f7b4a7f2e4266846dc7b5f8168b3b~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;amp;from=article.pc_detail&amp;amp;lk3s=953192f4&amp;amp;x-expires=1767151003&amp;amp;x-signature=5CVaBg2hpVfxJjC5KhmaokBsGPY%3D&quot;/&gt;&lt;p class=&quot;pgc-img-caption&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;/div&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;18&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;并且可以智能将电影和电视剧文件分类整理，条理清晰的影视库让您轻松找到想看的内容。对于电影也可以自动生成信息海报墙，如果识别不到，可以手动修正信息。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class=&quot;pgc-img&quot;&gt;&lt;img src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/c9b47e653aa74c4ea29c4d5890415d7e~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;from=article.pc_detail&amp;lk3s=953192f4&amp;x-expires=1767151003&amp;x-signature=Au2fybq19HjBcK0i1Q0q0cv7eEw%3D&quot; class=&quot;syl-page-img&quot; style=&quot;height: auto;&quot; data-src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/c9b47e653aa74c4ea29c4d5890415d7e~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;amp;from=article.pc_detail&amp;amp;lk3s=953192f4&amp;amp;x-expires=1767151003&amp;amp;x-signature=Au2fybq19HjBcK0i1Q0q0cv7eEw%3D&quot;/&gt;&lt;p class=&quot;pgc-img-caption&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;/div&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;19&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;电影信息识别的来源于 TMDB，可以看到海报、评分、简介、演员表、导演、上映日期等信息。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class=&quot;pgc-img&quot;&gt;&lt;img src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/22a95e89b75b44409e286dbf634ec3b3~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;from=article.pc_detail&amp;lk3s=953192f4&amp;x-expires=1767151003&amp;x-signature=XngHL0TBcGwfxDc3VwO7pTd1BdQ%3D&quot; class=&quot;syl-page-img&quot; style=&quot;height: auto;&quot; data-src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/22a95e89b75b44409e286dbf634ec3b3~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;amp;from=article.pc_detail&amp;amp;lk3s=953192f4&amp;amp;x-expires=1767151003&amp;amp;x-signature=XngHL0TBcGwfxDc3VwO7pTd1BdQ%3D&quot;/&gt;&lt;p class=&quot;pgc-img-caption&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;/div&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;20&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;✅ WebDAV 服务：&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;开启 WebDAV 服务功能你可以将你文件快速共享给朋友，提供支持局域网共享和远程功能。选择你要共享的文件夹，然后设置 WebDAV 服务的登录用户名及密码即可。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class=&quot;pgc-img&quot;&gt;&lt;img src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/840d6eb8654c4ede8fc1b6c525e12d59~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;from=article.pc_detail&amp;lk3s=953192f4&amp;x-expires=1767151003&amp;x-signature=ZtpGtAqBwZLET6S0vz91Y1MDhN4%3D&quot; class=&quot;syl-page-img&quot; style=&quot;height: auto;&quot; data-src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/840d6eb8654c4ede8fc1b6c525e12d59~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;amp;from=article.pc_detail&amp;amp;lk3s=953192f4&amp;amp;x-expires=1767151003&amp;amp;x-signature=ZtpGtAqBwZLET6S0vz91Y1MDhN4%3D&quot;/&gt;&lt;p class=&quot;pgc-img-caption&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;/div&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;21&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;✅ 远程下载：&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;支持磁力、http、https、ftp、sftp、ed2k 等常见的下载链接协议，并且还支持做种功能，可帮助他人更快地下载到他们所需的文件。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class=&quot;pgc-img&quot;&gt;&lt;img src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/c10aeb55d9bf4f029e270b49d83531ab~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;from=article.pc_detail&amp;lk3s=953192f4&amp;x-expires=1767151003&amp;x-signature=3%2FpAslJY6ve%2FPgBk69wv9H8NBbY%3D&quot; class=&quot;syl-page-img&quot; style=&quot;height: auto;&quot; data-src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/c10aeb55d9bf4f029e270b49d83531ab~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;amp;from=article.pc_detail&amp;amp;lk3s=953192f4&amp;amp;x-expires=1767151003&amp;amp;x-signature=3%2FpAslJY6ve%2FPgBk69wv9H8NBbY%3D&quot;/&gt;&lt;p class=&quot;pgc-img-caption&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;/div&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;22&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;如果你平时只用来下载影片，建议到设置里面修改下载默认目录为你设置的影片目录，这样下载好的影片也会自动添加到影视库里面，非常方便。其它功能支持设置任务数、下载速度等。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class=&quot;pgc-img&quot;&gt;&lt;img src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/8ac23f505983462d8ff91f67a48215a4~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;from=article.pc_detail&amp;lk3s=953192f4&amp;x-expires=1767151003&amp;x-signature=TlhPdZv3XxGaWd3yIW6njCWGVQs%3D&quot; class=&quot;syl-page-img&quot; style=&quot;height: auto;&quot; data-src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/8ac23f505983462d8ff91f67a48215a4~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;amp;from=article.pc_detail&amp;amp;lk3s=953192f4&amp;amp;x-expires=1767151003&amp;amp;x-signature=TlhPdZv3XxGaWd3yIW6njCWGVQs%3D&quot;/&gt;&lt;p class=&quot;pgc-img-caption&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;/div&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;23&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;✅ 相册功能：&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;支持通过电脑或者手机上传照片，支持对相册分类整理、以及收藏和最近删除功能。因为有手机客户端的支持，所以可以实现通过手机上传备份照片。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class=&quot;pgc-img&quot;&gt;&lt;img src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/5a6536f4e7524e8d98bc4ef87a46190c~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;from=article.pc_detail&amp;lk3s=953192f4&amp;x-expires=1767151003&amp;x-signature=q1Bh3gDZ0JcMJr5l7MQcInxFmPA%3D&quot; class=&quot;syl-page-img&quot; style=&quot;height: auto;&quot; data-src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/5a6536f4e7524e8d98bc4ef87a46190c~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;amp;from=article.pc_detail&amp;amp;lk3s=953192f4&amp;amp;x-expires=1767151003&amp;amp;x-signature=q1Bh3gDZ0JcMJr5l7MQcInxFmPA%3D&quot;/&gt;&lt;p class=&quot;pgc-img-caption&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;/div&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;24&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;✅ 文件管理：&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;跟系统的文件管理器差不多，直接访问你电脑的硬盘，支持常规的操作，例如剪切、复制、上传、下载、分享、压缩等。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class=&quot;pgc-img&quot;&gt;&lt;img src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/b78a4a699abd4cafa2a8eb5873c2532d~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;from=article.pc_detail&amp;lk3s=953192f4&amp;x-expires=1767151003&amp;x-signature=jH0jFFEqVo3lJe3ekDVhdLgXTTg%3D&quot; class=&quot;syl-page-img&quot; style=&quot;height: auto;&quot; data-src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/b78a4a699abd4cafa2a8eb5873c2532d~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;amp;from=article.pc_detail&amp;amp;lk3s=953192f4&amp;amp;x-expires=1767151003&amp;amp;x-signature=jH0jFFEqVo3lJe3ekDVhdLgXTTg%3D&quot;/&gt;&lt;p class=&quot;pgc-img-caption&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;/div&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;26&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;✅ 智能助理方面：能&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;够阅读理解电脑中的文档，并根据你的提问找到合适的答案等等。不过对电脑硬件有要求，首次使用会检测是否达到要求，然后要会下载 8G 的模型来部署了本地 AI。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class=&quot;pgc-img&quot;&gt;&lt;img src=&quot;https://p9-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/f14c0fe816d2450796ad20b9854ce330~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;from=article.pc_detail&amp;lk3s=953192f4&amp;x-expires=1767151003&amp;x-signature=OCkHwKR%2BsOvnH4U6MzMfsUUUHsw%3D&quot; class=&quot;syl-page-img&quot; style=&quot;height: auto;&quot; data-src=&quot;https://p9-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/f14c0fe816d2450796ad20b9854ce330~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;amp;from=article.pc_detail&amp;amp;lk3s=953192f4&amp;amp;x-expires=1767151003&amp;amp;x-signature=OCkHwKR%2BsOvnH4U6MzMfsUUUHsw%3D&quot;/&gt;&lt;p class=&quot;pgc-img-caption&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;/div&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;28&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;✅ 功能设置：&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;提供了用户管理、桌面个性化设置（设置壁纸、任务栏模式）、套件设置、套餐方案、外部访问管理、分享文件默认有效期等。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class=&quot;pgc-img&quot;&gt;&lt;img src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/9364d78f46a1430aa834e0f2c626991c~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;from=article.pc_detail&amp;lk3s=953192f4&amp;x-expires=1767151003&amp;x-signature=zYabdY7ZlqAwWibzrSnYs%2BJbcQo%3D&quot; class=&quot;syl-page-img&quot; style=&quot;height: auto;&quot; data-src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/9364d78f46a1430aa834e0f2c626991c~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;amp;from=article.pc_detail&amp;amp;lk3s=953192f4&amp;amp;x-expires=1767151003&amp;amp;x-signature=zYabdY7ZlqAwWibzrSnYs%2BJbcQo%3D&quot;/&gt;&lt;p class=&quot;pgc-img-caption&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;/div&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;30&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;✅ 手机端方面：&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;只要在安卓 / iOS 的 「AiNAS」登录你的账号即可远程访问你的 NAS 服务器，功能方面和 PC 端的一样。例如上班的时候可以远程下载影片，下班回家就可以看了。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class=&quot;pgc-img&quot;&gt;&lt;img src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/3d7000755db94bd483b5b7a6c914767e~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;from=article.pc_detail&amp;lk3s=953192f4&amp;x-expires=1767151003&amp;x-signature=Yxte0g0LhbrBDM725peNLYiu2Xo%3D&quot; class=&quot;syl-page-img&quot; style=&quot;height: auto;&quot; data-src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/3d7000755db94bd483b5b7a6c914767e~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;amp;from=article.pc_detail&amp;amp;lk3s=953192f4&amp;amp;x-expires=1767151003&amp;amp;x-signature=Yxte0g0LhbrBDM725peNLYiu2Xo%3D&quot;/&gt;&lt;p class=&quot;pgc-img-caption&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;/div&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;33&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;播放器方面支持选集、倍速、画质、字幕、投屏、HDR、音轨等播放器必备的功能。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class=&quot;pgc-img&quot;&gt;&lt;img src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/af15c222779d42dba4f87f97df4a4313~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;from=article.pc_detail&amp;lk3s=953192f4&amp;x-expires=1767151003&amp;x-signature=XGHwf%2F42c44HWjLAwiY8optqIi8%3D&quot; class=&quot;syl-page-img&quot; style=&quot;height: auto;&quot; data-src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/af15c222779d42dba4f87f97df4a4313~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;amp;from=article.pc_detail&amp;amp;lk3s=953192f4&amp;amp;x-expires=1767151003&amp;amp;x-signature=XGHwf%2F42c44HWjLAwiY8optqIi8%3D&quot;/&gt;&lt;p class=&quot;pgc-img-caption&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;/div&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;35&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;color: #333333; --tt-darkmode-color: #A3A3A3;&quot;&gt;总结&lt;br class=&quot;sysbr&quot;/&gt;&lt;/span&gt;&lt;/strong&gt;&lt;br/&gt;对新手非常友好的
 NAS 系统，只要你有一台 Windows 
电脑安装好即可实现家庭影音中心、相册备份、文件分享等功能。当然有些小伙伴担心电脑功耗的问题（如果你有低功耗 NUC、MINI 
主机那就更好了），实际上不一定要 24 小时开启，只在你需要的时候开启即可，例如下班开启后，客厅的电视就可以变成影音中心。&lt;/span&gt;&lt;/p&gt;&lt;/article&gt;&lt;/div&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Fri, 15 Nov 2024 14:43:00 +0800</pubDate></item><item><title>鲁大师出品，闲置电脑变成 NAS 服务器：AiNAS</title><link>http://0594.live/?id=16</link><description>&lt;div&gt;&lt;article class=&quot;syl-article-base syl-page-article tt-article-content syl-device-pc&quot;&gt;&lt;p data-track=&quot;1&quot;&gt;如果你有闲置的旧电脑、软路由等设备也可以将它们变成 NAS 服务器，&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;现在鲁大师也推出了把闲置电脑变成 NAS 的软件「AiNAS」装上后它即可变成你的个人私有云服务器，同时还有 AI 加持、支持自建知识库、支持远程下载等功能。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class=&quot;pgc-img&quot;&gt;&lt;img src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-axegupay5k/46b93f77e4884d7f9cd5c6480b1e69f6~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;from=article.pc_detail&amp;lk3s=953192f4&amp;x-expires=1767150822&amp;x-signature=jbauEAGPXNmTdYr2x2wvYdWwv2s%3D&quot; class=&quot;syl-page-img&quot; style=&quot;height: auto;&quot; data-src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-axegupay5k/46b93f77e4884d7f9cd5c6480b1e69f6~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;amp;from=article.pc_detail&amp;amp;lk3s=953192f4&amp;amp;x-expires=1767150822&amp;amp;x-signature=jbauEAGPXNmTdYr2x2wvYdWwv2s%3D&quot;/&gt;&lt;p class=&quot;pgc-img-caption&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;/div&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;3&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;color: #333333; --tt-darkmode-color: #A3A3A3;&quot;&gt;使用体验&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;4&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;鲁大师「AiNAS」提供了 Windows (Win10 及以上)、Linux 、安卓、iOS 版本下载，安装好后首次使用需要授权绑定账号获取超级管理员权限，可以完全管控文件和系统配置。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;6&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;打开任务栏右下角「AiNAS」会看到一个&lt;/span&gt;&lt;strong&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;访问云桌面&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;的按钮，点击它，会自动打开浏览器访问。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class=&quot;pgc-img&quot;&gt;&lt;img src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/e93d9e9d4b2f409989d017e862970eca~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;from=article.pc_detail&amp;lk3s=953192f4&amp;x-expires=1767150822&amp;x-signature=RZO%2BkqybPiLPYusoRvNIaMVU8%2Bs%3D&quot; class=&quot;syl-page-img&quot; style=&quot;height: auto;&quot; data-src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/e93d9e9d4b2f409989d017e862970eca~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;amp;from=article.pc_detail&amp;amp;lk3s=953192f4&amp;amp;x-expires=1767150822&amp;amp;x-signature=RZO%2BkqybPiLPYusoRvNIaMVU8%2Bs%3D&quot;/&gt;&lt;p class=&quot;pgc-img-caption&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;/div&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;8&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;接下来其它设备通过访问官方网站 https://playnas.com 登录你的账号就可以远程访问或者管理你的 NAS 了。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class=&quot;pgc-img&quot;&gt;&lt;img src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/3d2323dca8d44364b07119a6bac5fe8b~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;from=article.pc_detail&amp;lk3s=953192f4&amp;x-expires=1767150822&amp;x-signature=JfMuw0QOJncDxr0Ua7%2FqWgQVEZ4%3D&quot; class=&quot;syl-page-img&quot; style=&quot;height: auto;&quot; data-src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/3d2323dca8d44364b07119a6bac5fe8b~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;amp;from=article.pc_detail&amp;amp;lk3s=953192f4&amp;amp;x-expires=1767150822&amp;amp;x-signature=JfMuw0QOJncDxr0Ua7%2FqWgQVEZ4%3D&quot;/&gt;&lt;p class=&quot;pgc-img-caption&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;/div&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;10&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;移动客户端方面：&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;官方表示目前还在开放中，还没有上架到各大应用商店，可以根据教程里面提供的二维码，扫码下载安装。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class=&quot;pgc-img&quot;&gt;&lt;img src=&quot;https://p26-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/838ad93d345c45fc87dee870fef63721~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;from=article.pc_detail&amp;lk3s=953192f4&amp;x-expires=1767150822&amp;x-signature=i5rl1993Fs3sHW3gGS38kKT5mDc%3D&quot; class=&quot;syl-page-img&quot; style=&quot;height: auto;&quot; data-src=&quot;https://p26-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/838ad93d345c45fc87dee870fef63721~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;amp;from=article.pc_detail&amp;amp;lk3s=953192f4&amp;amp;x-expires=1767150822&amp;amp;x-signature=i5rl1993Fs3sHW3gGS38kKT5mDc%3D&quot;/&gt;&lt;p class=&quot;pgc-img-caption&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;/div&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;12&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;文件管理功能方面：&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;可以直接访问你电脑的硬盘，支持常规的操作，例如剪切、复制、上传、下载、分享、压缩等。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class=&quot;pgc-img&quot;&gt;&lt;img src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/7996e972de7342d9b9344ee747314966~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;from=article.pc_detail&amp;lk3s=953192f4&amp;x-expires=1767150822&amp;x-signature=cXvLMPMtWDVVoNveHnVjt0lMWkc%3D&quot; class=&quot;syl-page-img&quot; style=&quot;height: auto;&quot; data-src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/7996e972de7342d9b9344ee747314966~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;amp;from=article.pc_detail&amp;amp;lk3s=953192f4&amp;amp;x-expires=1767150822&amp;amp;x-signature=cXvLMPMtWDVVoNveHnVjt0lMWkc%3D&quot;/&gt;&lt;p class=&quot;pgc-img-caption&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;/div&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;13&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;远程下载方面：&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;当前支持磁力、http、https、ftp、sftp、ed2k 等常见的下载链接协议，并且还支持做种功能，可帮助他人更快地下载到他们所需的文件。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class=&quot;pgc-img&quot;&gt;&lt;img src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/72a230a24e2b401fbbd46a4c00852e4d~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;from=article.pc_detail&amp;lk3s=953192f4&amp;x-expires=1767150822&amp;x-signature=wK6AdQ3ufBVJkp54AkNOeMHVgGk%3D&quot; class=&quot;syl-page-img&quot; style=&quot;height: auto;&quot; data-src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/72a230a24e2b401fbbd46a4c00852e4d~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;amp;from=article.pc_detail&amp;amp;lk3s=953192f4&amp;amp;x-expires=1767150822&amp;amp;x-signature=wK6AdQ3ufBVJkp54AkNOeMHVgGk%3D&quot;/&gt;&lt;p class=&quot;pgc-img-caption&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;/div&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;14&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;相册功能方面：&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;支持通过电脑或者手机上传照片，支持对相册分类整理、以及收藏和最近删除功能。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class=&quot;pgc-img&quot;&gt;&lt;img src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/a01ef613eb944e1197110a02daa523ae~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;from=article.pc_detail&amp;lk3s=953192f4&amp;x-expires=1767150822&amp;x-signature=RLVS0LXRqieVNd2%2Bol5SZs5dssk%3D&quot; class=&quot;syl-page-img&quot; style=&quot;height: auto;&quot; data-src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/a01ef613eb944e1197110a02daa523ae~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;amp;from=article.pc_detail&amp;amp;lk3s=953192f4&amp;amp;x-expires=1767150822&amp;amp;x-signature=RLVS0LXRqieVNd2%2Bol5SZs5dssk%3D&quot;/&gt;&lt;p class=&quot;pgc-img-caption&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;/div&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;15&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;影视功能方面：&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;支持从本地添加影片（如果能提供 webdev 或者网盘挂载功能就更好了），可以智能将电影和电视剧文件分类整理，条理清晰的影视库让您轻松找到想看的内容。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class=&quot;pgc-img&quot;&gt;&lt;img src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/30fbac9dd21a418e90c4e898341dee9b~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;from=article.pc_detail&amp;lk3s=953192f4&amp;x-expires=1767150822&amp;x-signature=jCixZaS1loLFvZXj2A8zydBClM0%3D&quot; class=&quot;syl-page-img&quot; style=&quot;height: auto;&quot; data-src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/30fbac9dd21a418e90c4e898341dee9b~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;amp;from=article.pc_detail&amp;amp;lk3s=953192f4&amp;amp;x-expires=1767150822&amp;amp;x-signature=jCixZaS1loLFvZXj2A8zydBClM0%3D&quot;/&gt;&lt;p class=&quot;pgc-img-caption&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;/div&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;16&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;智能助理方面：&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;对电脑硬件有要求，首次使用会检测是否达到要求，然后要会下载 8G 的模型来部署了本地 AI，能够阅读理解电脑中的文档，并根据你的提问找到合适的答案等等。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class=&quot;pgc-img&quot;&gt;&lt;img src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/c812e912fa3b4d9fb61177c040e6ddd9~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;from=article.pc_detail&amp;lk3s=953192f4&amp;x-expires=1767150822&amp;x-signature=miGlomd5YEZttHnifRixTPfhnl0%3D&quot; class=&quot;syl-page-img&quot; style=&quot;height: auto;&quot; data-src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/c812e912fa3b4d9fb61177c040e6ddd9~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;amp;from=article.pc_detail&amp;amp;lk3s=953192f4&amp;amp;x-expires=1767150822&amp;amp;x-signature=miGlomd5YEZttHnifRixTPfhnl0%3D&quot;/&gt;&lt;p class=&quot;pgc-img-caption&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;/div&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;17&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;功能设置方面：&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;提供了用户管理、桌面个性化设置、套件设置、套餐方案、外部访问管理等。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class=&quot;pgc-img&quot;&gt;&lt;img src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/040d1792a117479cac75073000824e10~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;from=article.pc_detail&amp;lk3s=953192f4&amp;x-expires=1767150822&amp;x-signature=lP7OuOwVXFd5TXCa%2Fx%2BcIn9dWdc%3D&quot; class=&quot;syl-page-img&quot; style=&quot;height: auto;&quot; data-src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/040d1792a117479cac75073000824e10~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;amp;from=article.pc_detail&amp;amp;lk3s=953192f4&amp;amp;x-expires=1767150822&amp;amp;x-signature=lP7OuOwVXFd5TXCa%2Fx%2BcIn9dWdc%3D&quot;/&gt;&lt;p class=&quot;pgc-img-caption&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;/div&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;18&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;color: #333333; --tt-darkmode-color: #A3A3A3;&quot;&gt;会员方面&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;19&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;基础版可以免费使用（每月可通过 APP 免费领取基础套餐），支持云互联通道：随时随地访问、本地 GPT 智能助理、文件管理、相册、远程下载、影视中心、动态 DNS 与端口映射支持，云互联最大转发速率 4 Mbps。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p data-track=&quot;21&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;而会员专业版 ￥9.9/月（只能用于 1 台设备），对比免费版提供支持了最大转发速率 12 Mbps、自定义访问网址。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class=&quot;pgc-img&quot;&gt;&lt;img src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/45720f771e5f4539bc32a3dc3ddac9bd~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;from=article.pc_detail&amp;lk3s=953192f4&amp;x-expires=1767150822&amp;x-signature=cziBpsABmnr9KAf5iCAiAAvqEHk%3D&quot; class=&quot;syl-page-img&quot; style=&quot;height: auto;&quot; data-src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/45720f771e5f4539bc32a3dc3ddac9bd~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;amp;from=article.pc_detail&amp;amp;lk3s=953192f4&amp;amp;x-expires=1767150822&amp;amp;x-signature=cziBpsABmnr9KAf5iCAiAAvqEHk%3D&quot;/&gt;&lt;p class=&quot;pgc-img-caption&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;/div&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;22&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;color: #333333; --tt-darkmode-color: #A3A3A3;&quot;&gt;功能特色&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;ul class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;文件套件：&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;不管您在度假、出差，还是在路上被老板催稿，只要您身边有设备就可以查看、下载电脑中的文档。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;相册套件：&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;你所经历的一切，构成了你现在的自己。科技让我们可以随时用照片、视频记录我们的经历，它们是我们在这个世界留下的足迹和路标，保存好它们，就像保存我们家里的老相簿一样。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;影视套件：&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;智能匹配精美的海报和影视信息，轻松打造媒体中⼼，⽀持进⾏字幕、⾳轨的输出选择，⽆需提前转码，提供多种码率选择。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;远程下载：&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;使用远程下载功能，在公司就可以提前让家里的电脑开始下载资源，不用跟同事抢公司网速，回家脱了鞋子就能立刻开始看片、玩游戏。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p class=&quot;syl-page-br&quot; style=&quot;&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;28&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;color: #333333; --tt-darkmode-color: #A3A3A3;&quot;&gt;总结&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;br/&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;br/&gt;适合动手能力不强的新手小白使用，安装注册账号即可使用，并且功能都很易用，还提供了移动客户端支持，不像其它 NAS 系统还得各种折腾部署、内网穿透等。手头有闲置电脑、笔记本的小伙伴可以试试看。&lt;/span&gt;&lt;/p&gt;&lt;/article&gt;&lt;/div&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Thu, 11 Jul 2024 11:12:35 +0800</pubDate></item><item><title>让 Win11 使用全新的桌面：Cairo Desktop</title><link>http://0594.live/?id=9</link><description>&lt;div&gt;&lt;article class=&quot;syl-article-base syl-page-article tt-article-content syl-device-pc&quot;&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;1&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;微软对
 Win11 
砍了一些桌面功能，例如调整任务栏位置、右键菜单功能，引发用户强烈不满。虽然可以通过一些工具来恢复这些功能，但是今天要推荐的是一款代替 Win11
 桌面的免费开源「Cairo Desktop」桌面环境，提供了高度自定义，采用类 MacOS 的顶部菜单栏等等。&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align:left&quot; data-track=&quot;2&quot; class=&quot;syl-page-br&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;3&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;color: #333333; --tt-darkmode-color: #A3A3A3;&quot;&gt;功能介绍&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;4&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;这款「Cairo Desktop」支持 Win7 - Win11 系统，官方号称注重稳定性、性能和生产力，提供可定制的桌面环境。软件自带简体中文语言，使用很简单，安装好后会有一个设置的向导。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class=&quot;pgc-img&quot;&gt;&lt;img src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-axegupay5k/1cb79e45bde345be9f878ac31df0ddba~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;from=article.pc_detail&amp;lk3s=953192f4&amp;x-expires=1744898355&amp;x-signature=Hq5b940PZDBrEFE8n9HhTBFLOtE%3D&quot; class=&quot;syl-page-img&quot; style=&quot;height: auto;&quot; data-src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-axegupay5k/1cb79e45bde345be9f878ac31df0ddba~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;amp;from=article.pc_detail&amp;amp;lk3s=953192f4&amp;amp;x-expires=1744898355&amp;amp;x-signature=Hq5b940PZDBrEFE8n9HhTBFLOtE%3D&quot; width=&quot;686&quot; height=&quot;458&quot; border=&quot;0&quot; vspace=&quot;0&quot; alt=&quot;&quot; title=&quot;&quot;/&gt;&lt;p class=&quot;pgc-img-caption&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;/div&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;6&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;允许用户根据自己的喜好和需求定制桌面环境，包括菜单栏、任务栏、图标布局等，从而满足用户的个性化需求。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class=&quot;pgc-img&quot;&gt;&lt;img src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/50162584935f495a854d5b51b651fb8e~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;from=article.pc_detail&amp;lk3s=953192f4&amp;x-expires=1744898355&amp;x-signature=uXF1wE%2F4wYePIaImudN2yMSWSvI%3D&quot; class=&quot;syl-page-img&quot; style=&quot;height: auto;&quot; data-src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/50162584935f495a854d5b51b651fb8e~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;amp;from=article.pc_detail&amp;amp;lk3s=953192f4&amp;amp;x-expires=1744898355&amp;amp;x-signature=uXF1wE%2F4wYePIaImudN2yMSWSvI%3D&quot; width=&quot;686&quot; height=&quot;458&quot; border=&quot;0&quot; vspace=&quot;0&quot; alt=&quot;&quot; title=&quot;&quot;/&gt;&lt;p class=&quot;pgc-img-caption&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;/div&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;8&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;菜单栏文件夹堆栈功能允许用户将常用文件夹添加到菜单栏上，实现快速访问，减少了在文件资源管理器中查找文件的时间。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class=&quot;pgc-img&quot;&gt;&lt;img src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/191dcd695e104d40b9d8e97efe344a24~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;from=article.pc_detail&amp;lk3s=953192f4&amp;x-expires=1744898355&amp;x-signature=J4X44bRXlw%2FxJ3%2B39LQmC54a7TQ%3D&quot; class=&quot;syl-page-img&quot; style=&quot;height: auto;&quot; data-src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/191dcd695e104d40b9d8e97efe344a24~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;amp;from=article.pc_detail&amp;amp;lk3s=953192f4&amp;amp;x-expires=1744898355&amp;amp;x-signature=J4X44bRXlw%2FxJ3%2B39LQmC54a7TQ%3D&quot; width=&quot;686&quot; height=&quot;458&quot; border=&quot;0&quot; vspace=&quot;0&quot; alt=&quot;&quot; title=&quot;&quot;/&gt;&lt;p class=&quot;pgc-img-caption&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;/div&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;10&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;类 MacOS 的顶部菜单栏，你可以通过点击程序 - 应用抓取器，来获取系统已经安装的软件，然后将软件添加到菜单栏上。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class=&quot;pgc-img&quot;&gt;&lt;img src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/d25b51464b314ddbb304f6e13923dde7~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;from=article.pc_detail&amp;lk3s=953192f4&amp;x-expires=1744898355&amp;x-signature=UzOROe9kq4CtRkTybRcHTe5r1QU%3D&quot; class=&quot;syl-page-img&quot; style=&quot;width: 686px; height: 458px;&quot; data-src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/d25b51464b314ddbb304f6e13923dde7~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;amp;from=article.pc_detail&amp;amp;lk3s=953192f4&amp;amp;x-expires=1744898355&amp;amp;x-signature=UzOROe9kq4CtRkTybRcHTe5r1QU%3D&quot; width=&quot;686&quot; height=&quot;458&quot; border=&quot;0&quot; vspace=&quot;0&quot; alt=&quot;&quot; title=&quot;&quot;/&gt;&lt;p class=&quot;pgc-img-caption&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;/div&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;12&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;提供了丰富的定制选项，用户可以根据自己的需求调整桌面环境的各个方面，包括颜色、字体、图标大小等。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class=&quot;pgc-img&quot;&gt;&lt;img src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/b300f026f4484e1babb940860a8f54cb~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;from=article.pc_detail&amp;lk3s=953192f4&amp;x-expires=1744898355&amp;x-signature=Q92UiGMhpYtanWtIhp%2BUWj3JBQE%3D&quot; class=&quot;syl-page-img&quot; style=&quot;width: 686px; height: 458px;&quot; data-src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/b300f026f4484e1babb940860a8f54cb~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;amp;from=article.pc_detail&amp;amp;lk3s=953192f4&amp;amp;x-expires=1744898355&amp;amp;x-signature=Q92UiGMhpYtanWtIhp%2BUWj3JBQE%3D&quot; width=&quot;686&quot; height=&quot;458&quot; border=&quot;0&quot; vspace=&quot;0&quot; alt=&quot;&quot; title=&quot;&quot;/&gt;&lt;p class=&quot;pgc-img-caption&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;/div&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;14&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;任务栏和窗口管理器可以帮助用户更轻松地管理多个任务，快速切换应用程序和窗口。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class=&quot;pgc-img&quot;&gt;&lt;img src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/5817093462ed4d24b0534b68e97a8ddb~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;from=article.pc_detail&amp;lk3s=953192f4&amp;x-expires=1744898355&amp;x-signature=hbCTfz8rRTZroEEIn9M7kdJ82L0%3D&quot; class=&quot;syl-page-img&quot; style=&quot;height: 458px; width: 686px;&quot; data-src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/5817093462ed4d24b0534b68e97a8ddb~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;amp;from=article.pc_detail&amp;amp;lk3s=953192f4&amp;amp;x-expires=1744898355&amp;amp;x-signature=hbCTfz8rRTZroEEIn9M7kdJ82L0%3D&quot; width=&quot;686&quot; height=&quot;458&quot;/&gt;&lt;p class=&quot;pgc-img-caption&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;/div&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;16&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;color: #333333; --tt-darkmode-color: #A3A3A3;&quot;&gt;卸载方法&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;17&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;点击左上角圆点 - Cairo设置 - 开机自启动 - 取消勾选，点击退出 Cairo 软件，然后卸载就可以了。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p data-track=&quot;18&quot; class=&quot;syl-page-br&quot; style=&quot;&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;20&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;color: #333333; --tt-darkmode-color: #A3A3A3;&quot;&gt;总结&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;21&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;通过使用「Cairo Desktop」用户可以根据自己的需求定制桌面环境，提高生产力和改善桌面体验，当然喜欢折腾美化的小伙伴，这款软件也是不错的选择哦。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/article&gt;&lt;/div&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Mon, 08 Jul 2024 19:43:26 +0800</pubDate></item><item><title>Rust Farm下一代构建引擎比Vite还快兼容Vite生态</title><link>http://0594.live/?id=4</link><description>&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px; color: rgb(51, 51, 51); font-family: 微软雅黑, Arial; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;&quot;&gt;Farm⭐️ 是基于 Rust 语言编写的下一代 Web 构建引擎，是目前最强大、最快、最稳定的 Rust Web 构建工具。&lt;/p&gt;&lt;h2 style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 10px; font-size: 18px; line-height: 26px; font-family: 微软雅黑, Arial; font-weight: 600; color: rgb(51, 51, 51); font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;&quot;&gt;&lt;span style=&quot;box-sizing: border-box; padding: 0px; margin: 0px; font-size: 16px; line-height: 26px; background-color: #FFFFFF; font-family: Optima, &amp;quot;Microsoft YaHei&amp;quot;, PingFangSC-regular, serif;&quot;&gt;什么是 Farm&lt;/span&gt;&lt;/h2&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px; color: rgb(51, 51, 51); font-family: 微软雅黑, Arial; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;&quot;&gt;Farm 是一个非常快的基于 Rust 的 Web 构建工具，类似 webpack 和 vite，但更快。&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px; color: rgb(51, 51, 51); font-family: 微软雅黑, Arial; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;&quot;&gt;farm resolve, load, transform 所有 asset(js/jsx/ts/tsx、css/sass/less、html、静态资源、json 等)，并将它们打包成一系列可部署文件。&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px; color: rgb(51, 51, 51); font-family: 微软雅黑, Arial; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;&quot;&gt;Farm 是一个速度极快的构建工具，可帮助您构建更快的 web/nodejs 应用程序。&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px; color: rgb(51, 51, 51); font-family: 微软雅黑, Arial; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;&quot;&gt;Farm 官方文档：https://www.farmfe.org/zh/&lt;/p&gt;&lt;h2 style=&quot;box-sizing: border-box; padding: 0px; margin: calc(1.90909em) 0px calc(1.27273em); font-size: 1.1em; line-height: 1.5; font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Source Han Sans SC&amp;quot;, &amp;quot;Noto Sans CJK SC&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, sans-serif; font-weight: 600; color: rgb(25, 27, 31); font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-optical-sizing: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; clear: left; background-color: rgb(255, 255, 255);&quot;&gt;功能特性&lt;/h2&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px; color: rgb(51, 51, 51); font-family: 微软雅黑, Arial; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;&quot;&gt;⚡&amp;nbsp;超级快：核心的编译能力均使用 Rust 编译，最大限度并行编译，秒起项目，毫秒级 HMR，极致性能体验！&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px; color: rgb(51, 51, 51); font-family: 微软雅黑, Arial; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;&quot;&gt;增量构建：模块级磁盘持久缓存，未更改的模块最多只编译一次，热启动时间降低&amp;nbsp;80%，搭配懒编译实现对任意规模项目&amp;nbsp;1s 启动以及预览&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px; color: rgb(51, 51, 51); font-family: 微软雅黑, Arial; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;&quot;&gt;⚙️&amp;nbsp;海量特性：内置支持&amp;nbsp;Html,&amp;nbsp;Css,&amp;nbsp;js/jsx/ts/tsx,&amp;nbsp;静态资源,&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px; color: rgb(51, 51, 51); font-family: 微软雅黑, Arial; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;&quot;&gt;插件化 &amp;amp; Vite兼容：编译能力由插件实现，兼容 Vite 插件生态，支持 Rust、Js 插件。&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px; color: rgb(51, 51, 51); font-family: 微软雅黑, Arial; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;&quot;&gt;⏱️&amp;nbsp;懒编译：非首屏页面，按需编译，访问具体页面时才会编译，极大提速大型项目启动时间&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px; color: rgb(51, 51, 51); font-family: 微软雅黑, Arial; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;&quot;&gt;✔️&amp;nbsp;生产优化：支持 tree shake、压缩、语法降级、polyfill 等完整生产能力，支持降级到 ES5&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px; color: rgb(51, 51, 51); font-family: 微软雅黑, Arial; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;&quot;&gt;局部打包：将模块按照依赖关系打包成 20 - 30 个左右的产物，同时&amp;nbsp;bundle&amp;nbsp;和&amp;nbsp;bundless&amp;nbsp;两种模式的极端，在保证加载性能的同时，提升缓存复用率&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px; color: rgb(51, 51, 51); font-family: 微软雅黑, Arial; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;&quot;&gt;一致性：开发和生产使用完全一致的策略，开发所见即生产所得&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px; color: rgb(51, 51, 51); font-family: 微软雅黑, Arial; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;&quot;&gt;兼容性：同时兼容现代浏览器和老旧浏览器（ES5）&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px; color: rgb(51, 51, 51); font-family: 微软雅黑, Arial; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;&quot;&gt;性能优势&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px; color: rgb(51, 51, 51); font-family: 微软雅黑, Arial; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;&quot;&gt;Farm 的性能表现让人印象深刻。&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px; color: rgb(51, 51, 51); font-family: 微软雅黑, Arial; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;&quot;&gt;根据最新的性能对比数据，Farm 在多个关键指标上均优于 Vite：&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px; color: rgb(51, 51, 51); font-family: 微软雅黑, Arial; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;&quot;&gt;冷启动速度对比：&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px; color: rgb(51, 51, 51); font-family: 微软雅黑, Arial; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;&quot;&gt;&lt;img src=&quot;https://s3.bmp.ovh/imgs/2025/04/06/2f132320d69f13dc.png&quot; title=&quot;image.png&quot; alt=&quot;image.png&quot; style=&quot;box-sizing: border-box; padding: 0px; margin: 0px; font-size: 16px; line-height: 26px; border: medium; vertical-align: middle; max-width: 100%; height: auto !important; width: 642px;&quot; width=&quot;642&quot; height=&quot;370&quot; border=&quot;0&quot; vspace=&quot;0&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px; color: rgb(51, 51, 51); font-family: 微软雅黑, Arial; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;&quot;&gt;热启动速度对比：&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px; color: rgb(51, 51, 51); font-family: 微软雅黑, Arial; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;&quot;&gt;&lt;img src=&quot;https://s3.bmp.ovh/imgs/2025/04/06/8a3854dd6965885e.png&quot; title=&quot;image.png&quot; alt=&quot;image.png&quot; style=&quot;box-sizing: border-box; padding: 0px; margin: 0px; font-size: 16px; line-height: 26px; border: medium; vertical-align: middle; max-width: 100%; height: auto !important; width: 637px;&quot; width=&quot;637&quot; height=&quot;356&quot; border=&quot;0&quot; vspace=&quot;0&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px; color: rgb(51, 51, 51); font-family: 微软雅黑, Arial; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;&quot;&gt;热更新 (根模块)速度对比：&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px; color: rgb(51, 51, 51); font-family: 微软雅黑, Arial; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;&quot;&gt;&lt;img src=&quot;https://s3.bmp.ovh/imgs/2025/04/06/48a20918ed5d125e.png&quot; title=&quot;image.png&quot; alt=&quot;image.png&quot; style=&quot;box-sizing: border-box; padding: 0px; margin: 0px; font-size: 16px; line-height: 26px; border: medium; vertical-align: middle; max-width: 100%; height: auto !important; width: 630px;&quot; width=&quot;630&quot; height=&quot;367&quot; border=&quot;0&quot; vspace=&quot;0&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px; color: rgb(51, 51, 51); font-family: 微软雅黑, Arial; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;&quot;&gt;热更新 (子模块)速度对比：&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px; color: rgb(51, 51, 51); font-family: 微软雅黑, Arial; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;&quot;&gt;&lt;img src=&quot;https://s3.bmp.ovh/imgs/2025/04/06/15319f724ed2031c.png&quot; title=&quot;image.png&quot; alt=&quot;image.png&quot; style=&quot;box-sizing: border-box; padding: 0px; margin: 0px; font-size: 16px; line-height: 26px; border: medium; vertical-align: middle; max-width: 100%; height: auto !important; width: 645px;&quot; width=&quot;645&quot; height=&quot;357&quot; border=&quot;0&quot; vspace=&quot;0&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px; color: rgb(51, 51, 51); font-family: 微软雅黑, Arial; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;&quot;&gt;冷构建速度对比：&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px; color: rgb(51, 51, 51); font-family: 微软雅黑, Arial; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;&quot;&gt;&lt;img src=&quot;https://s3.bmp.ovh/imgs/2025/04/06/521a9301199aff02.png&quot; title=&quot;image.png&quot; alt=&quot;image.png&quot; style=&quot;box-sizing: border-box; padding: 0px; margin: 0px; font-size: 16px; line-height: 26px; border: medium; vertical-align: middle; max-width: 100%; height: auto !important; width: 655px;&quot; width=&quot;655&quot; height=&quot;373&quot; border=&quot;0&quot; vspace=&quot;0&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px; color: rgb(51, 51, 51); font-family: 微软雅黑, Arial; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;&quot;&gt;热构建速度对比：&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px; color: rgb(51, 51, 51); font-family: 微软雅黑, Arial; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;&quot;&gt;&lt;img src=&quot;https://s3.bmp.ovh/imgs/2025/04/06/36797d176c8f8756.png&quot; title=&quot;image.png&quot; alt=&quot;image.png&quot; style=&quot;box-sizing: border-box; padding: 0px; margin: 0px; font-size: 16px; line-height: 26px; border: medium; vertical-align: middle; max-width: 100%; height: auto !important; width: 656px;&quot; width=&quot;656&quot; height=&quot;366&quot; border=&quot;0&quot; vspace=&quot;0&quot;/&gt;&lt;/p&gt;&lt;h2 style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 10px; font-size: 18px; line-height: 26px; font-family: 微软雅黑, Arial; font-weight: 600; color: rgb(51, 51, 51); font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;&quot;&gt;Farm 的核心特性&lt;/h2&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px; color: rgb(51, 51, 51); font-family: 微软雅黑, Arial; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;&quot;&gt;Farm 的设计理念和技术实现，是其性能优势的基石：&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px; color: rgb(51, 51, 51); font-family: 微软雅黑, Arial; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;&quot;&gt;超级快的编译速度：所有编译工作由 Rust 实现，利用 Rust 的性能优势，实现毫秒级的项目启动和&amp;nbsp;2ms&amp;nbsp;的&amp;nbsp;HMR&amp;nbsp;更新。丰富的编译能力：默认支持&amp;nbsp;Html、Css、Js、Jsx、Ts、Tsx、静态资源等模块的编译，满足前端开发的各种需求。懒编译策略：Farm 采用按需编译的方式，仅在模块加载时进行编译，进一步优化了启动速度。插件化架构：Farm 的所有功能都可以通过插件进行扩展，支持&amp;nbsp;Rust&amp;nbsp;和&amp;nbsp;Js&amp;nbsp;插件，提供了极大的灵活性，开箱即用支持 Vite 插件。开发与生产环境的一致性：Farm 确保开发环境和生产环境的编译行为一致，避免了环境不一致带来的问题。局部 Bundle：Farm 根据模块依赖和资源大小，智能地将项目拆分成多个小 Bundle，提升了资源加载速度和缓存命中率。&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Wed, 26 Jun 2024 18:14:54 +0800</pubDate></item><item><title>抢先安装体验 Win11 24H2 &amp;quot;正式版&amp;quot;</title><link>http://0594.live/?id=10</link><description>&lt;div&gt;&lt;article class=&quot;syl-article-base syl-page-article tt-article-content syl-device-pc&quot;&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;1&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;微软将于今年下半年发布 Win11 24H2 正式版，微软将在这个版本中带来大量的 AI 新功能。现在 Win11 24H2 正式版已经确认为 26100 版本号，进入到了 Release Preview 通道，&lt;/span&gt;&lt;strong&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;已经接近最终正式版了。&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;如果你想抢先使用，可以下载镜像安装。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align:left&quot; data-track=&quot;2&quot; class=&quot;syl-page-br&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;3&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;color: #333333; --tt-darkmode-color: #A3A3A3;&quot;&gt;功能介绍&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;4&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;Win11 24H2 26100 目前已经提供了多语言版本，包括简体中文。版本方面有：家庭版、家庭单语言版、教育版、专业版、专业教育版、专业工作站版、企业版。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class=&quot;pgc-img&quot;&gt;&lt;img src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-axegupay5k/26674ad094be4908942621a9f4213713~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;from=article.pc_detail&amp;lk3s=953192f4&amp;x-expires=1744898641&amp;x-signature=vNAh2OWhTYj75FcksVkU8aleuwE%3D&quot; class=&quot;syl-page-img&quot; style=&quot;width: 686px; height: 458px;&quot; data-src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-axegupay5k/26674ad094be4908942621a9f4213713~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;amp;from=article.pc_detail&amp;amp;lk3s=953192f4&amp;amp;x-expires=1744898641&amp;amp;x-signature=vNAh2OWhTYj75FcksVkU8aleuwE%3D&quot; width=&quot;686&quot; height=&quot;458&quot; border=&quot;0&quot; vspace=&quot;0&quot; alt=&quot;&quot; title=&quot;&quot;/&gt;&lt;p class=&quot;pgc-img-caption&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;/div&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;6&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;安装过程就略过了，不过发现好像多了一个自定义体验的选择界面，可以选择开发、娱乐、游戏、学校、创造力等。据介绍会根据你的选择获得个性化的提示和广告、建议。这里建议点跳过。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class=&quot;pgc-img&quot;&gt;&lt;img src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/aebd3d9bd4e44227b9255cb178aac17a~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;from=article.pc_detail&amp;lk3s=953192f4&amp;x-expires=1744898641&amp;x-signature=Rk3GOSGLsEsZDHV1%2FmCxYV7lSbw%3D&quot; class=&quot;syl-page-img&quot; style=&quot;width: 686px; height: 458px;&quot; data-src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/aebd3d9bd4e44227b9255cb178aac17a~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;amp;from=article.pc_detail&amp;amp;lk3s=953192f4&amp;amp;x-expires=1744898641&amp;amp;x-signature=Rk3GOSGLsEsZDHV1%2FmCxYV7lSbw%3D&quot; width=&quot;686&quot; height=&quot;458&quot; border=&quot;0&quot; vspace=&quot;0&quot; alt=&quot;&quot; title=&quot;&quot;/&gt;&lt;p class=&quot;pgc-img-caption&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;/div&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;7&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;安装好后版本号为 Win11 24H2 26100.560。另外据微软最新的消息，在26100.712 的更新将移除 Cortana、Tips 和 WordPad 应用程序。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class=&quot;pgc-img&quot;&gt;&lt;img src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/6ea4893f884f4f3182356df3f2d7806f~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;from=article.pc_detail&amp;lk3s=953192f4&amp;x-expires=1744898641&amp;x-signature=TkpWBhsv8GS7eZx%2Fa7G5JPyllAc%3D&quot; class=&quot;syl-page-img&quot; style=&quot;width: 686px; height: 458px;&quot; data-src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/6ea4893f884f4f3182356df3f2d7806f~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;amp;from=article.pc_detail&amp;amp;lk3s=953192f4&amp;amp;x-expires=1744898641&amp;amp;x-signature=TkpWBhsv8GS7eZx%2Fa7G5JPyllAc%3D&quot; width=&quot;686&quot; height=&quot;458&quot; border=&quot;0&quot; vspace=&quot;0&quot; alt=&quot;&quot; title=&quot;&quot;/&gt;&lt;p class=&quot;pgc-img-caption&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;/div&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;8&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;新功能方面包括有支持在文件管理器里面对文件夹压缩 7zip、7z、TAR 格式、新增 HDR 背景支持、支持 Wi-Fi 7、新增节能工具、连接低功耗蓝牙音频设备方面的改进等等。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class=&quot;pgc-img&quot;&gt;&lt;img src=&quot;https://p26-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/c975c0ed010d484c9ba61bcd3087830d~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;from=article.pc_detail&amp;lk3s=953192f4&amp;x-expires=1744898641&amp;x-signature=FP7UEhniXL6rXAdpJ1QHQPzPXr0%3D&quot; class=&quot;syl-page-img&quot; style=&quot;width: 686px; height: 458px;&quot; data-src=&quot;https://p26-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/c975c0ed010d484c9ba61bcd3087830d~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;amp;from=article.pc_detail&amp;amp;lk3s=953192f4&amp;amp;x-expires=1744898641&amp;amp;x-signature=FP7UEhniXL6rXAdpJ1QHQPzPXr0%3D&quot; width=&quot;686&quot; height=&quot;458&quot; border=&quot;0&quot; vspace=&quot;0&quot; alt=&quot;&quot; title=&quot;&quot;/&gt;&lt;p class=&quot;pgc-img-caption&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;/div&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;9&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;Win11 引入原生 Sudo 命令支持，它可能允许用户管理需要管理权限的设置，例如卸载应用程序、更改系统设置或其他与开发人员相关的设置。可在 Wi11 的开发者设置中找到 Sudo 的开关选项。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class=&quot;pgc-img&quot;&gt;&lt;img src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/dda96ee27e834386afaadaf00211f173~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;from=article.pc_detail&amp;lk3s=953192f4&amp;x-expires=1744898641&amp;x-signature=q6yRfVTofvKk5eVsP6iTX8XCrU0%3D&quot; class=&quot;syl-page-img&quot; style=&quot;width: 686px; height: 458px;&quot; data-src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/dda96ee27e834386afaadaf00211f173~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;amp;from=article.pc_detail&amp;amp;lk3s=953192f4&amp;amp;x-expires=1744898641&amp;amp;x-signature=q6yRfVTofvKk5eVsP6iTX8XCrU0%3D&quot; width=&quot;686&quot; height=&quot;458&quot; border=&quot;0&quot; vspace=&quot;0&quot; alt=&quot;&quot; title=&quot;&quot;/&gt;&lt;p class=&quot;pgc-img-caption&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;/div&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;10&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;新 AI Recall 功能方面，要求 Copilot+ PC，硬件要求：16GB 内存、256GB 存储空间和每秒 40 Tera 运算（TOPS）的神经处理单元 NPU。&lt;/span&gt;&lt;strong&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;如果达不到硬件要求将无法使用。&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;目前微软已发布基于高通 Snapdragon X 系列处理器的一系列 Windows PC 新品。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class=&quot;pgc-img&quot;&gt;&lt;img src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/3af4ab372d46427aa3a862b1d7a1fb50~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;from=article.pc_detail&amp;lk3s=953192f4&amp;x-expires=1744898641&amp;x-signature=%2Bt7Mq%2F4QFbzmg%2FiaZAzYfu3nh7g%3D&quot; class=&quot;syl-page-img&quot; style=&quot;width: 686px; height: 458px;&quot; data-src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/3af4ab372d46427aa3a862b1d7a1fb50~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;amp;from=article.pc_detail&amp;amp;lk3s=953192f4&amp;amp;x-expires=1744898641&amp;amp;x-signature=%2Bt7Mq%2F4QFbzmg%2FiaZAzYfu3nh7g%3D&quot; width=&quot;686&quot; height=&quot;458&quot; border=&quot;0&quot; vspace=&quot;0&quot; alt=&quot;&quot; title=&quot;&quot;/&gt;&lt;p class=&quot;pgc-img-caption&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;/div&gt;&lt;p style=&quot;text-align: left;&quot; data-track=&quot;11&quot;&gt;&lt;span style=&quot;letter-spacing: 1px;&quot;&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;不过开发者 @thebookisclosed 研究后发现，&lt;/span&gt;&lt;strong&gt;&lt;span style=&quot;color: #000000; --tt-darkmode-color: #A3A3A3;&quot;&gt;Win11 Recall 功能其实并不是非得需要最新的骁龙X Elite NPU，他在现有的 Arm64 硬件上就成功开启了此功能，只是没说具体是哪款处理器。&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;/article&gt;&lt;/div&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Mon, 27 May 2024 20:07:11 +0800</pubDate></item><item><title>Rolldown-基于Rust的JavaScrip打包工具</title><link>http://0594.live/?id=3</link><description>&lt;div class=&quot;article-content article&quot; style=&quot;box-sizing: border-box; padding: 0px; margin: 0px; font-size: 16px; line-height: 26px; color: rgb(51, 51, 51); font-family: 微软雅黑, Arial; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;&quot;&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px; text-align: center;&quot;&gt;&lt;img src=&quot;https://s3.bmp.ovh/imgs/2025/04/06/2ec4a58a43a7ca67.png&quot; title=&quot;image.png&quot; alt=&quot;image.png&quot; style=&quot;box-sizing: border-box; padding: 0px; margin: 0px; font-size: 16px; line-height: 26px; border: none; vertical-align: middle; max-width: 100%; height: auto !important;&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px;&quot;&gt;&lt;strong style=&quot;box-sizing: border-box; padding: 0px; margin: 0px; font-size: 16px; line-height: 26px; font-weight: 700; font-family: Optima, &amp;quot;Microsoft YaHei&amp;quot;, PingFangSC-regular, serif; display: inline !important;&quot;&gt;Rolldown 的优势&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px;&quot;&gt;Rolldown 是一款用&amp;nbsp;Rust&amp;nbsp;重新编写的&amp;nbsp;Rollup&amp;nbsp;替代品。而 Rollup 使用的是 javascript。&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px;&quot;&gt;&lt;strong style=&quot;box-sizing: border-box; padding: 0px; margin: 0px; font-size: 16px; line-height: 26px; font-weight: 700;&quot;&gt;Rolldown 具有以下特点：&lt;/strong&gt;&lt;/p&gt;&lt;ul class=&quot; list-paddingleft-2&quot; style=&quot;list-style-type: disc;&quot;&gt;&lt;li&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px; font-size: 16px; line-height: 26px;&quot;&gt;&lt;strong style=&quot;box-sizing: border-box; padding: 0px; margin: 0px; font-size: 16px; line-height: 26px; font-weight: 700;&quot;&gt;与 Rollup 兼容：&lt;/strong&gt;Rolldown 设计之初就考虑到了与 Rollup 的兼容性，这意味着现有的 Rollup 插件和配置可以无缝迁移到 Rolldown，极大地方便了开发者的过渡和使用。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px; font-size: 16px; line-height: 26px;&quot;&gt;&lt;strong style=&quot;box-sizing: border-box; padding: 0px; margin: 0px; font-size: 16px; line-height: 26px; font-weight: 700;&quot;&gt;更快的构建速度：&lt;/strong&gt;Rolldown 致力于提供更快的构建速度，这对于开发效率的提升至关重要。在现代 Web 开发中，快速的反馈循环可以显著提高开发效率，而 Rolldown 正是为了满足这一需求而设计的。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px; font-size: 16px; line-height: 26px;&quot;&gt;&lt;strong style=&quot;box-sizing: border-box; padding: 0px; margin: 0px; font-size: 16px; line-height: 26px; font-weight: 700;&quot;&gt;更小的输出体积：&lt;/strong&gt;Rolldown 还专注于生成更小的输出体积，这有助于减少加载时间，提高用户体验。在移动设备和网络连接受限的环境中，这一点尤为重要。&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px;&quot;&gt;&lt;br style=&quot;box-sizing: border-box; padding: 0px; margin: 0px; font-size: 16px; line-height: 26px;&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px;&quot;&gt;Rolldown 类似于 esbuild，它是一款专注于速度和性能的 JavaScript 构建工具。&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px;&quot;&gt;尤雨溪（Evan You）表示，在捆绑纯 esm 模块时，Rolldown 比 esbuild 快&amp;nbsp;1.4~2&amp;nbsp;倍。但这次大家对性能的关注度不太高。反而是&amp;nbsp;Rust&amp;nbsp;占了很大一部分的注意力。&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px;&quot;&gt;&lt;br style=&quot;box-sizing: border-box; padding: 0px; margin: 0px; font-size: 16px; line-height: 26px;&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px;&quot;&gt;&lt;strong style=&quot;box-sizing: border-box; padding: 0px; margin: 0px; font-size: 16px; line-height: 26px; font-weight: 700;&quot;&gt;Vite 存在的问题&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px;&quot;&gt;目前，Vite 的底层使用了两个打包工具：&lt;code style=&quot;box-sizing: border-box; padding: 2px 4px; margin: 0px; font-size: 16px; line-height: 26px; font-family: Menlo, Monaco, Consolas, &amp;quot;Courier New&amp;quot;, monospace; color: rgb(199, 37, 78); background-color: rgb(249, 242, 244); border-radius: 4px;&quot;&gt;Esbuild&lt;/code&gt;、&lt;code style=&quot;box-sizing: border-box; padding: 2px 4px; margin: 0px; font-size: 16px; line-height: 26px; font-family: Menlo, Monaco, Consolas, &amp;quot;Courier New&amp;quot;, monospace; color: rgb(199, 37, 78); background-color: rgb(249, 242, 244); border-radius: 4px;&quot;&gt;Rollup&lt;/code&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px;&quot;&gt;首先，让我们了解一下&amp;nbsp;Esbuild&amp;nbsp;和&amp;nbsp;Rollup&amp;nbsp;的特点。&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px;&quot;&gt;&lt;code style=&quot;box-sizing: border-box; padding: 2px 4px; margin: 0px; font-size: 16px; line-height: 26px; font-family: Menlo, Monaco, Consolas, &amp;quot;Courier New&amp;quot;, monospace; color: rgb(199, 37, 78); background-color: rgb(249, 242, 244); border-radius: 4px;&quot;&gt;Esbuild&amp;nbsp;&lt;/code&gt;是一个高性能的 JavaScript 打包器，专注于实现极速的构建过程。&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px; text-align: center;&quot;&gt;&lt;img src=&quot;https://s3.bmp.ovh/imgs/2025/04/06/93e1787453bd332a.png&quot; title=&quot;image.png&quot; alt=&quot;image.png&quot; style=&quot;box-sizing: border-box; padding: 0px; margin: 0px; font-size: 16px; line-height: 26px; border: medium; vertical-align: middle; max-width: 100%; height: auto !important; width: 835px;&quot; width=&quot;835&quot; height=&quot;201&quot; border=&quot;0&quot; vspace=&quot;0&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px;&quot;&gt;它支持多种模块类型、语法转换和插件扩展，且无需缓存即可迅速完成打包任务。在 Vite 中，Esbuild 被用于依赖预打包、TypeScript&amp;nbsp;和&amp;nbsp;JSX&amp;nbsp;转换、目标降级以及代码压缩。&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px;&quot;&gt;而&amp;nbsp;&lt;code style=&quot;box-sizing: border-box; padding: 2px 4px; margin: 0px; font-size: 16px; line-height: 26px; font-family: Menlo, Monaco, Consolas, &amp;quot;Courier New&amp;quot;, monospace; color: rgb(199, 37, 78); background-color: rgb(249, 242, 244); border-radius: 4px;&quot;&gt;Rollup&amp;nbsp;&lt;/code&gt;则是一个 JavaScript&amp;nbsp;模块打包器，能够编译小块代码成复杂的大型代码块，特别支持 ES6 模块。&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px; text-align: center;&quot;&gt;&lt;img src=&quot;https://s3.bmp.ovh/imgs/2025/04/06/8a2a52bcb0a57d8e.png&quot; title=&quot;image.png&quot; alt=&quot;image.png&quot; style=&quot;box-sizing: border-box; padding: 0px; margin: 0px; font-size: 16px; line-height: 26px; border: medium; vertical-align: middle; max-width: 100%; height: auto !important; width: 1080px;&quot; width=&quot;1080&quot; height=&quot;726&quot; border=&quot;0&quot; vspace=&quot;0&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px;&quot;&gt;它支持&amp;nbsp;&lt;code style=&quot;box-sizing: border-box; padding: 2px 4px; margin: 0px; font-size: 16px; line-height: 26px; font-family: Menlo, Monaco, Consolas, &amp;quot;Courier New&amp;quot;, monospace; color: rgb(199, 37, 78); background-color: rgb(249, 242, 244); border-radius: 4px;&quot;&gt;Tree Shaking&lt;/code&gt;，有效去除未使用的代码，减少最终文件大小。在 Vite 中，Rollup 被用于生产构建，并支持一个与 Rollup 兼容的插件接口。&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px;&quot;&gt;然而，使用两个不同的打包工具存在明显弊端：它们之间的输出差异可能导致开发环境与生产环境行为的不一致，同时，用户代码在生产构建过程中会被多次解析、转换和序列化，从而增加了不必要的性能开销。&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px;&quot;&gt;因此，希望 Vite 能够整合一个单一的、性能卓越的打包工具，既能减少解析和序列化开销，又能与 Rollup 插件生态兼容，并具备出色的大型应用构建输出控制能力。&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px;&quot;&gt;正是在这个背景下，Rolldown&amp;nbsp;应运而生！&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px;&quot;&gt;&lt;br style=&quot;box-sizing: border-box; padding: 0px; margin: 0px; font-size: 16px; line-height: 26px;&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px;&quot;&gt;&lt;strong style=&quot;box-sizing: border-box; padding: 0px; margin: 0px; font-size: 16px; line-height: 26px; font-weight: 700;&quot;&gt;Rolldown 的未来&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px;&quot;&gt;&lt;code style=&quot;box-sizing: border-box; padding: 2px 4px; margin: 0px; font-size: 16px; line-height: 26px; font-family: Menlo, Monaco, Consolas, &amp;quot;Courier New&amp;quot;, monospace; color: rgb(199, 37, 78); background-color: rgb(249, 242, 244); border-radius: 4px;&quot;&gt;Rolldown&amp;nbsp;&lt;/code&gt;使用&amp;nbsp;&lt;code style=&quot;box-sizing: border-box; padding: 2px 4px; margin: 0px; font-size: 16px; line-height: 26px; font-family: Menlo, Monaco, Consolas, &amp;quot;Courier New&amp;quot;, monospace; color: rgb(199, 37, 78); background-color: rgb(249, 242, 244); border-radius: 4px;&quot;&gt;Rust&amp;nbsp;&lt;/code&gt;编写，并且使用了 Oxc 中的工具。Oxc 是字节跳动出品的一个用 Rust 编写的 JavaScript 高性能工具集合，该项目的重点在于构建 JavaScript 的基本编译器工具：解析器、linter、格式化程序、转译器、压缩器和解析引擎。此外，OXC 还为 Rspack、Rolldown 和 Ezno 等新兴 JavaScript 工具提供支持。&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px;&quot;&gt;目前，Rolldown 主要依赖其高效的解析器和解析引擎进行工作。未来，一旦 Oxc 的转换器和压缩器可用，Rolldown 也将计划集成它们，Rolldown 也将直接作为独立的打包使用。&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px;&quot;&gt;当 Rolldown 发展至成熟阶段时，它将能够直接取代&amp;nbsp;Esbuild 和 Rollup，这样将减少了对外部工具的依赖，为未来的功能扩展提供更大的便利和灵活性。&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px;&quot;&gt;可以说:&amp;nbsp;Rolldown 可能是未来 5-10 年最具影响力的前端项目之一。&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Mon, 06 May 2024 18:04:09 +0800</pubDate></item><item><title>宝塔面板php7.3&amp;amp;7.4版本不支持ZipArchive扩展解决办法</title><link>http://0594.live/?id=1</link><description>&lt;h3 class=&quot;box-title&quot; style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 20px; font-size: 20px; line-height: 1.1; font-family: inherit; font-weight: bold; color: inherit;&quot;&gt;详情内容&lt;/h3&gt;&lt;div class=&quot;article-content article&quot; style=&quot;box-sizing: border-box; padding: 0px; margin: 0px; font-size: 16px; line-height: 26px;&quot;&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px;&quot;&gt;宝塔面板php7.3&amp;amp;7.4版本不支持ZipArchive，会提示报错Class ‘ZipArchive‘ not found解決。要手工安装zip扩展首先需要安装libzip。&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px;&quot;&gt;宝塔面板php7.3版本在SSH命令行界面执行以下语句：&lt;/p&gt;&lt;pre class=&quot;brush:ps;toolbar:false&quot; style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 10px; font-size: 16px; line-height: 26px; overflow: auto; font-family: Menlo, Monaco, Consolas, &amp;quot;Courier New&amp;quot;, monospace; display: block; color: rgb(51, 51, 51); word-break: break-all; overflow-wrap: break-word; background-color: transparent; border: none; border-radius: 4px; position: relative;&quot;&gt;cd&amp;nbsp;/www/server/php/73/src/ext/zip//www/server/php/73/bin/phpize
./configure&amp;nbsp;--with-php-config=/www/server/php/73/bin/php-config
make&amp;nbsp;&amp;amp;&amp;amp;&amp;nbsp;make&amp;nbsp;install
echo&amp;nbsp;&amp;quot;extension&amp;nbsp;=&amp;nbsp;zip.so&amp;quot;&amp;nbsp;&amp;gt;&amp;gt;&amp;nbsp;/www/server/php/73/etc/php.ini&lt;/pre&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px;&quot;&gt;&lt;img src=&quot;https://s3.bmp.ovh/imgs/2025/04/06/77b552a93e1ce813.png&quot; title=&quot;image.png&quot; alt=&quot;image.png&quot; style=&quot;box-sizing: border-box; padding: 0px; margin: 0px; font-size: 16px; line-height: 26px; border: medium; vertical-align: middle; max-width: 100%; height: auto !important; width: 702px;&quot; width=&quot;702&quot; height=&quot;566&quot; border=&quot;0&quot; vspace=&quot;0&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px;&quot;&gt;宝塔面板php7.4版本在SSH命令行界面执行以下语句：&lt;/p&gt;&lt;pre class=&quot;brush:ps;toolbar:false&quot; style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 10px; font-size: 16px; line-height: 26px; overflow: auto; font-family: Menlo, Monaco, Consolas, &amp;quot;Courier New&amp;quot;, monospace; display: block; color: rgb(51, 51, 51); word-break: break-all; overflow-wrap: break-word; background-color: transparent; border: none; border-radius: 4px; position: relative;&quot;&gt;cd&amp;nbsp;/www/server/php/74/src/ext/zip//www/server/php/74/bin/phpize
./configure&amp;nbsp;--with-php-config=/www/server/php/74/bin/php-config
make&amp;nbsp;&amp;amp;&amp;amp;&amp;nbsp;make&amp;nbsp;install
echo&amp;nbsp;&amp;quot;extension&amp;nbsp;=&amp;nbsp;zip.so&amp;quot;&amp;nbsp;&amp;gt;&amp;gt;&amp;nbsp;/www/server/php/74/etc/php.ini复制&lt;/pre&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px;&quot;&gt;#卸载老版本的libzip，因为zip扩展不支持新版本&lt;br style=&quot;box-sizing: border-box; padding: 0px; margin: 0px; font-size: 16px; line-height: 26px;&quot;/&gt;&lt;/p&gt;&lt;pre class=&quot;brush:ps;toolbar:false&quot; style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 10px; font-size: 16px; line-height: 26px; overflow: auto; font-family: Menlo, Monaco, Consolas, &amp;quot;Courier New&amp;quot;, monospace; display: block; color: rgb(51, 51, 51); word-break: break-all; overflow-wrap: break-word; background-color: transparent; border: none; border-radius: 4px; position: relative;&quot;&gt;yum&amp;nbsp;remove&amp;nbsp;libzip#下载安装libzip-1.2.0cd&amp;nbsp;/data
wget&amp;nbsp;https://libzip.org/download/libzip-1.2.0.tar.gz
tar&amp;nbsp;-zxvf&amp;nbsp;libzip-1.2.0.tar.gzcd&amp;nbsp;libzip-1.2.0
./configure
make&amp;nbsp;&amp;amp;&amp;amp;&amp;nbsp;make&amp;nbsp;install&lt;/pre&gt;&lt;p style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 15px; font-size: 16px; line-height: 26px;&quot;&gt;安装完成后，查看是否存在/usr/local/lib/pkgconfig目录,如果存在，执行如下命令来设置&lt;/p&gt;&lt;pre class=&quot;brush:ps;toolbar:false&quot; style=&quot;box-sizing: border-box; padding: 0px; margin: 0px 0px 10px; font-size: 16px; line-height: 26px; overflow: auto; font-family: Menlo, Monaco, Consolas, &amp;quot;Courier New&amp;quot;, monospace; display: block; color: rgb(51, 51, 51); word-break: break-all; overflow-wrap: break-word; background-color: transparent; border: none; border-radius: 4px; position: relative;&quot;&gt;PKG_CONFIG_PATH：export&amp;nbsp;PKG_CONFIG_PATH=&amp;quot;/usr/local/lib/pkgconfig/&amp;quot;&lt;/pre&gt;&lt;/div&gt;</description><pubDate>Sat, 06 Apr 2024 14:16:59 +0800</pubDate></item></channel></rss>