<?xml version="1.0" encoding="utf-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><title>恒星博客</title><link>https://hxser.com/</link><description>blog</description><item><title>ubuntu 通过docker方式安装clouddrive2</title><link>https://hxser.com/post/51.html</link><description>&lt;p&gt;&lt;span style=&quot;color: #4D4D4D; font-family: -apple-system, &amp;quot;SF UI Text&amp;quot;, Arial, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, sans-serif; font-size: 16px; font-variant-ligatures: no-common-ligatures; background-color: #FFFFFF;&quot;&gt;直接拉取&lt;/span&gt;&lt;/p&gt;&lt;p&gt;docker pull cloudnas/clouddrive2-unstable&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;color: #4D4D4D; font-family: -apple-system, &amp;quot;SF UI Text&amp;quot;, Arial, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, sans-serif; font-size: 16px; font-variant-ligatures: no-common-ligatures; background-color: #FFFFFF;&quot;&gt;启动&lt;/span&gt;&lt;/p&gt;&lt;p&gt;docker run -d \&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; --name clouddrive2 \&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; --restart unless-stopped \&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; --env CLOUDDRIVE_HOME=/Config \&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; -v /opt/CloudNAS:/CloudNAS:shared \&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; -v ~/cloudnas/Config:/Config \&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; -v /opt/CloudNAS:/media:shared \&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; -p 19798:19798 \&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;--privileged \&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;--device /dev/fuse:/dev/fuse \&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;cloudnas/clouddrive2-unstable&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Wed, 16 Oct 2024 11:46:13 +0800</pubDate></item><item><title>win10添加启动</title><link>https://hxser.com/post/50.html</link><description>&lt;p&gt;win+r&lt;br/&gt;&lt;/p&gt;&lt;p&gt;shell:startup&lt;/p&gt;</description><pubDate>Mon, 14 Oct 2024 13:09:14 +0800</pubDate></item><item><title>docker 删除容器</title><link>https://hxser.com/post/49.html</link><description>&lt;p&gt;列出所有容器ID&lt;/p&gt;&lt;p&gt;docker ps -aq&lt;/p&gt;&lt;p&gt;查看所有运行或者不运行容器&lt;/p&gt;&lt;p&gt;docker ps -a&lt;/p&gt;&lt;p&gt;停止所有的容器才能够删除容器&amp;nbsp;&lt;/p&gt;&lt;p&gt;docker stop $(docker ps -a -q)&lt;/p&gt;&lt;p&gt;删除所有容器的话&lt;/p&gt;&lt;p&gt;docker rm $(docker ps -a -q)&amp;nbsp;&lt;/p&gt;&lt;p&gt;按id指定删除&lt;/p&gt;&lt;p&gt;docker rmi id&lt;/p&gt;&lt;p&gt;删除全部镜像&lt;/p&gt;&lt;p&gt;docker rmi $(docker images -q)&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Sun, 29 Sep 2024 22:24:11 +0800</pubDate></item><item><title>ubuntu安装alist</title><link>https://hxser.com/post/48.html</link><description>&lt;h2 id=&quot;准备环境&quot;&gt;准备环境&lt;/h2&gt;&lt;h3 id=&quot;安装curl&quot;&gt;安装curl&lt;/h3&gt;&lt;pre highlighted=&quot;true&quot; has-selection=&quot;true&quot; class=&quot;prism-highlight prism-language-bash&quot;&gt;sudo&amp;nbsp;apt&amp;nbsp;install&amp;nbsp;curl&amp;nbsp;-y&lt;/pre&gt;&lt;h2 id=&quot;一键脚本安装&quot;&gt;一键脚本安装&lt;/h2&gt;&lt;p&gt;仅适用于 Linux amd64/arm64 平台。&lt;/p&gt;&lt;h3 id=&quot;自定义路径&quot;&gt;自定义路径&lt;/h3&gt;&lt;p&gt;默认安装在&amp;nbsp;&lt;code&gt;/opt/alist&lt;/code&gt;&amp;nbsp;中。 自定义安装路径，将安装路径作为第二个参数添加，必须是绝对路径（如果路径以&amp;nbsp;&lt;code&gt;alist&lt;/code&gt;&amp;nbsp;结尾，则直接安装到给定路径，否则会安装在给定路径&amp;nbsp;&lt;code&gt;alist&lt;/code&gt;&amp;nbsp;目录下），如 安装到&amp;nbsp;&lt;code&gt;/root&lt;/code&gt;：&lt;/p&gt;&lt;pre highlighted=&quot;true&quot; has-selection=&quot;true&quot; class=&quot;prism-highlight prism-language-basic&quot;&gt;#切换到root用户sudo&amp;nbsp;su
#&amp;nbsp;安装&amp;nbsp;curl&amp;nbsp;-fsSL&amp;nbsp;&amp;quot;https://alist.nn.ci/v3.sh&amp;quot;&amp;nbsp;|&amp;nbsp;bash&amp;nbsp;-s&amp;nbsp;install&amp;nbsp;/root
#&amp;nbsp;更新&amp;nbsp;curl&amp;nbsp;-fsSL&amp;nbsp;&amp;quot;https://alist.nn.ci/v3.sh&amp;quot;&amp;nbsp;|&amp;nbsp;bash&amp;nbsp;-s&amp;nbsp;update&amp;nbsp;/root
#&amp;nbsp;卸载&amp;nbsp;curl&amp;nbsp;-fsSL&amp;nbsp;&amp;quot;https://alist.nn.ci/v3.sh&amp;quot;&amp;nbsp;|&amp;nbsp;bash&amp;nbsp;-s&amp;nbsp;uninstall&amp;nbsp;/root&lt;/pre&gt;&lt;p&gt;这里我就选择安装在&lt;code&gt;/root&lt;/code&gt;，方便查找管理。&lt;/p&gt;&lt;p&gt;执行完命令之后,会自动下载并运行&lt;code&gt;Alist&lt;/code&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;color: #1D2129; font-family: UbuntuMono, &amp;quot;Varela Round&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Helvetica, Arial, Menlo, Monaco, monospace, sans-serif; font-size: 15px; text-wrap: wrap; background-color: #F7F8FA;&quot;&gt;宝塔里面把5244端口打开一次，打开之后就可以去浏览器访问了：&lt;/span&gt;&lt;code style=&quot;font-family: &amp;quot;Menlo,Monaco,Consolas,&amp;#39;Courier New&amp;#39;, monospace&amp;quot;; margin: 0px 3px; padding: 0.065em 0.4em; font-size: 0.87em; vertical-align: middle; box-sizing: border-box; line-height: 1.8; display: inline; overflow-x: auto; border-radius: 2px; color: rgb(21, 167, 167); word-break: break-word; text-wrap: wrap; border: none !important;&quot;&gt;IP:5244&lt;/code&gt;&lt;/p&gt;&lt;p&gt;&lt;code style=&quot;font-family: &amp;quot;Menlo,Monaco,Consolas,&amp;#39;Courier New&amp;#39;, monospace&amp;quot;; margin: 0px 3px; padding: 0.065em 0.4em; font-size: 0.87em; vertical-align: middle; box-sizing: border-box; line-height: 1.8; display: inline; overflow-x: auto; border-radius: 2px; color: rgb(21, 167, 167); word-break: break-word; text-wrap: wrap; border: none !important;&quot;&gt;&lt;span style=&quot;color: #1D2129; font-family: UbuntuMono, &amp;quot;Varela Round&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Helvetica, Arial, Menlo, Monaco, monospace, sans-serif; font-size: 15px; text-wrap: wrap; background-color: #F7F8FA;&quot;&gt;打开之后使用上面给出的默认管理员用户和密码登录进去，如果你忘记了密码，那么可以执行&lt;/span&gt;&lt;code style=&quot;font-family: &amp;quot;Menlo,Monaco,Consolas,&amp;#39;Courier New&amp;#39;, monospace&amp;quot;; margin: 0px 3px; padding: 0.065em 0.4em; font-size: 0.87em; vertical-align: middle; box-sizing: border-box; line-height: 1.8; display: inline; overflow-x: auto; border-radius: 2px; color: rgb(21, 167, 167); word-break: break-word; text-wrap: wrap; border: none !important;&quot;&gt;./alist admin&lt;/code&gt;&lt;span style=&quot;color: #1D2129; font-family: UbuntuMono, &amp;quot;Varela Round&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Helvetica, Arial, Menlo, Monaco, monospace, sans-serif; font-size: 15px; text-wrap: wrap; background-color: #F7F8FA;&quot;&gt;进行查看。&lt;/span&gt;&lt;/code&gt;&lt;/p&gt;&lt;p&gt;&lt;code style=&quot;font-family: &amp;quot;Menlo,Monaco,Consolas,&amp;#39;Courier New&amp;#39;, monospace&amp;quot;; margin: 0px 3px; padding: 0.065em 0.4em; font-size: 0.87em; vertical-align: middle; box-sizing: border-box; line-height: 1.8; display: inline; overflow-x: auto; border-radius: 2px; color: rgb(21, 167, 167); word-break: break-word; text-wrap: wrap; border: none !important;&quot;&gt;&lt;br/&gt;&lt;/code&gt;&lt;/p&gt;&lt;p&gt;&lt;code style=&quot;font-family: &amp;quot;Menlo,Monaco,Consolas,&amp;#39;Courier New&amp;#39;, monospace&amp;quot;; margin: 0px 3px; padding: 0.065em 0.4em; font-size: 0.87em; vertical-align: middle; box-sizing: border-box; line-height: 1.8; display: inline; overflow-x: auto; border-radius: 2px; color: rgb(21, 167, 167); word-break: break-word; text-wrap: wrap; border: none !important;&quot;&gt;&lt;/code&gt;刷新令牌（Refresh Token）&lt;/p&gt;&lt;p&gt;打开链接：&lt;a href=&quot;https://alist.nn.ci/tool/aliyundrive/request&quot; target=&quot;_blank&quot; rel=&quot;noopener nofollow&quot;&gt;https://alist.nn.ci/guide/drivers/115.html#root-folder-id&lt;/a&gt;&lt;/p&gt;&lt;p&gt;点击&lt;code&gt;Scan QrCode&lt;/code&gt;，然后使用手机APP进行扫码授权&lt;/p&gt;&lt;p&gt;&lt;code style=&quot;font-family: &amp;quot;Menlo,Monaco,Consolas,&amp;#39;Courier New&amp;#39;, monospace&amp;quot;; margin: 0px 3px; padding: 0.065em 0.4em; font-size: 0.87em; vertical-align: middle; box-sizing: border-box; line-height: 1.8; display: inline; overflow-x: auto; border-radius: 2px; color: rgb(21, 167, 167); word-break: break-word; text-wrap: wrap; border: none !important;&quot;&gt;&lt;/code&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Sun, 29 Sep 2024 20:11:24 +0800</pubDate></item><item><title>群晖添加社群</title><link>https://hxser.com/post/47.html</link><description>&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap;&quot;&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-wrap: wrap;&quot;&gt;&lt;span style=&quot;text-wrap: nowrap;&quot;&gt;添加方法：&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-wrap: wrap;&quot;&gt;&lt;span style=&quot;text-wrap: nowrap;&quot;&gt;套件中心-&amp;gt;社群-&amp;gt;右上角设置-&amp;gt;套件来源-&amp;gt;新增&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap;&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap;&quot;&gt;https://spk.imnks.com/&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap;&quot;&gt;https://spk.520810.xyz:666/&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap;&quot;&gt;云梦有可能添加不上，先用浏览器打开云梦web页面然后上面有123456好多个地址，一个一个尝试。&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap;&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Sun, 18 Aug 2024 00:38:21 +0800</pubDate></item><item><title>ESXI如何使用普通的UPS做到断电自动关机</title><link>https://hxser.com/post/46.html</link><description>&lt;p&gt;ESXI如何使用普通的UPS做到断电自动关机，保护硬盘不受到损伤&lt;/p&gt;&lt;p&gt;一、登陆ESXI的SSH创建文件夹及脚本&lt;/p&gt;&lt;p&gt;1.进入磁盘目录&lt;/p&gt;&lt;p&gt;cd vmfs/volumes&lt;br/&gt;&lt;/p&gt;&lt;p&gt;ls&lt;/p&gt;&lt;p&gt;我的硬盘名称为datastore1&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;2.进入硬盘目录&lt;br/&gt;&lt;/p&gt;&lt;p&gt;cd datastore1&lt;br/&gt;&lt;/p&gt;&lt;p&gt;ls&lt;/p&gt;&lt;p&gt;此时显示的是我们目前所有的虚拟机目录&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;3.创建一个ups目录，并进入ups目录&lt;br/&gt;&lt;/p&gt;&lt;p&gt;mkdir ups&lt;br/&gt;&lt;/p&gt;&lt;p&gt;cd ups&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;4.创建apc.sh脚本&lt;/p&gt;&lt;p&gt;vi apc.sh&lt;br/&gt;&lt;/p&gt;&lt;p&gt;里面填入脚本代码&lt;br/&gt;&lt;/p&gt;&lt;p&gt;按i编辑&lt;br/&gt;&lt;/p&gt;&lt;pre class=&quot;prism-highlight prism-language-bash&quot;&gt;#!/bin/sh
while
ping&amp;nbsp;-c&amp;nbsp;1&amp;nbsp;12.12.12.252&amp;nbsp;&amp;gt;&amp;nbsp;/dev/null
[&amp;nbsp;$?&amp;nbsp;-eq&amp;nbsp;0&amp;nbsp;];
do
#echo&amp;nbsp;&amp;#39;&amp;nbsp;AC&amp;nbsp;Power&amp;nbsp;OK&amp;nbsp;!&amp;nbsp;&amp;#39;&amp;nbsp;&amp;gt;&amp;gt;&amp;nbsp;/vmfs/volumes/datastore1/ups/ups.log;date&amp;nbsp;&amp;gt;&amp;gt;&amp;nbsp;/vmfs/volumes/datastore1/ups/ups.log
sleep&amp;nbsp;180
done
echo&amp;nbsp;&amp;#39;&amp;nbsp;AC&amp;nbsp;Power&amp;nbsp;maybe&amp;nbsp;off,&amp;nbsp;checking&amp;nbsp;again&amp;nbsp;after&amp;nbsp;3&amp;nbsp;minutes&amp;nbsp;!&amp;nbsp;&amp;#39;&amp;nbsp;&amp;gt;&amp;gt;&amp;nbsp;/vmfs/volumes/datastore1/ups/ups.log;date&amp;nbsp;&amp;gt;&amp;gt;&amp;nbsp;/vmfs/volumes/datastore1/ups/ups.log
sleep&amp;nbsp;180
ping&amp;nbsp;-c&amp;nbsp;1&amp;nbsp;12.12.12.252&amp;nbsp;&amp;gt;&amp;nbsp;/dev/null
if&amp;nbsp;[&amp;nbsp;$?&amp;nbsp;-eq&amp;nbsp;0&amp;nbsp;]
then
echo&amp;nbsp;&amp;#39;&amp;nbsp;Checkagain,&amp;nbsp;AC&amp;nbsp;Power&amp;nbsp;OK&amp;nbsp;!&amp;nbsp;&amp;#39;&amp;nbsp;&amp;gt;&amp;gt;&amp;nbsp;/vmfs/volumes/datastore1/ups/ups.log;date&amp;nbsp;&amp;gt;&amp;gt;&amp;nbsp;/vmfs/volumes/datastore1/ups/ups.log
else
echo&amp;nbsp;&amp;#39;&amp;nbsp;AC&amp;nbsp;Power&amp;nbsp;is&amp;nbsp;already&amp;nbsp;off,&amp;nbsp;shut&amp;nbsp;down&amp;nbsp;NAS&amp;nbsp;Now!&amp;nbsp;&amp;#39;&amp;nbsp;&amp;gt;&amp;gt;&amp;nbsp;/vmfs/volumes/datastore1/ups/ups.log;date&amp;nbsp;&amp;gt;&amp;gt;&amp;nbsp;/vmfs/volumes/datastore1/ups/ups.log
/bin/shutdown.sh
halt
fi&lt;/pre&gt;&lt;p&gt;代码中的12.12.12.252 改为你要Ping的网关地址，datastore1 部分的改为你的硬盘名称，默认的都是这个&lt;/p&gt;&lt;p&gt;按esc键退出编辑模式&lt;br/&gt;&lt;/p&gt;&lt;p&gt;:wq保存&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;然后赋予权限&lt;/p&gt;&lt;p&gt;chmod 777 apc.sh&lt;br/&gt;&lt;/p&gt;&lt;p&gt;赋予权限后apc.sh会变为绿色&lt;br/&gt;&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;二、创建空白的日志文件ups.log&lt;/p&gt;&lt;p&gt;同样的在第一步所创建的ups目录里面创建&lt;/p&gt;&lt;p&gt;vi ups.log&lt;br/&gt;&lt;/p&gt;&lt;p&gt;:wq&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;同样赋予权限&lt;/p&gt;&lt;p&gt;chmod 777 ups.log&lt;br/&gt;&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;三、可以临时测试下脚本是否生效&lt;/p&gt;&lt;p&gt;进入到ups目录&lt;/p&gt;&lt;p&gt;cd vmfs/volumes/datastore1/ups&lt;br/&gt;&lt;/p&gt;&lt;p&gt;./apc.sh&lt;/p&gt;&lt;p&gt;不显示任何内容就代表在运行了&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;然后这个ssh界面保持不动 从新打开一个，检测下是否运行成功，输入命令&lt;br/&gt;&lt;/p&gt;&lt;p&gt;ps -c | grep apc.sh | grep -v grep |wc -l&lt;br/&gt;&lt;/p&gt;&lt;p&gt;反馈的是1 代表脚本启动成功，反馈的是0 代表没有启动成功&lt;br/&gt;&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;四、添加守护进程代码&lt;/p&gt;&lt;p&gt;同样进入到ups目录&lt;/p&gt;&lt;p&gt;cd vmfs/volumes/datastore1/ups&lt;br/&gt;&lt;/p&gt;&lt;p&gt;vi ups_shouhu.sh&lt;/p&gt;&lt;p&gt;按i编辑&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;里面填入如下代码&lt;/p&gt;&lt;pre class=&quot;prism-highlight prism-language-bash&quot;&gt;#&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;获取ups进程数量
NUM=`ps&amp;nbsp;-c&amp;nbsp;|&amp;nbsp;grep&amp;nbsp;apc.sh&amp;nbsp;|&amp;nbsp;grep&amp;nbsp;-v&amp;nbsp;grep&amp;nbsp;|wc&amp;nbsp;-l`
echo&amp;nbsp;${NUM}
#&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;少于1，重启进程
if&amp;nbsp;[&amp;nbsp;&amp;quot;${NUM}&amp;quot;&amp;nbsp;-lt&amp;nbsp;&amp;quot;1&amp;quot;&amp;nbsp;];then
/vmfs/volumes/datastore1/ups/apc.sh&amp;nbsp;&amp;amp;
echo&amp;nbsp;&amp;#39;&amp;nbsp;UPS&amp;nbsp;shouhu&amp;nbsp;start&amp;#39;&amp;nbsp;&amp;gt;&amp;gt;&amp;nbsp;/vmfs/volumes/datastore1/ups/ups.log;date&amp;nbsp;&amp;gt;&amp;gt;&amp;nbsp;/vmfs/volumes/datastore1/ups/ups.log
fi
exit&amp;nbsp;0&lt;/pre&gt;&lt;p&gt;按esc退出编辑模式&lt;/p&gt;&lt;p&gt;:wq&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;同样赋予权限&lt;/p&gt;&lt;p&gt;chmod 777 ups_shouhu.sh&lt;br/&gt;&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;五、然后添加一个计划任务,每三分钟执行守护脚本&lt;/p&gt;&lt;p&gt;vi /etc/rc.local.d/local.sh&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;把里面的内容全部清空，填入如下代码&lt;/p&gt;&lt;pre class=&quot;prism-highlight prism-language-bash&quot;&gt;/bin/kill&amp;nbsp;$(cat&amp;nbsp;/var/run/crond.pid)
/bin/echo&amp;nbsp;&amp;#39;*/3&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;/vmfs/volumes/datastore1/ups/ups_shouhu.sh&amp;#39;&amp;nbsp;&amp;gt;&amp;gt;&amp;nbsp;/var/spool/cron/crontabs/root
/bin/crond
exit&amp;nbsp;0&lt;/pre&gt;&lt;p&gt;六、然后从起ESXI主机，再执行命令验证下脚本是否运行&lt;/p&gt;&lt;p&gt;ps -c | grep apc.sh | grep -v grep |wc -l&lt;/p&gt;&lt;p&gt;反馈的是1 代表脚本启动成功，反馈的是0 代表没有启动成功&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Mon, 05 Feb 2024 11:25:29 +0800</pubDate></item><item><title>ESXi 8.0安装</title><link>https://hxser.com/post/45.html</link><description>&lt;p style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 3px 0px; outline: none; line-height: 30px; color: rgb(34, 34, 34); font-family: tahoma, arial, &amp;quot;Microsoft YaHei&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;将ESXi 8.0 镜像导入后，进入ESXi 标准引导菜单（Standard Boot Menu）。&lt;/p&gt;&lt;p style=&quot;text-align:center;margin-top: 0px; margin-bottom: 0px; padding: 3px 0px; outline: none; line-height: 30px; color: rgb(34, 34, 34); font-family: tahoma, arial, &amp;quot;Microsoft YaHei&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;img src=&quot;https://hxser.com/zb_users/upload/2024/02/20240205074626170709038618874.png&quot; alt=&quot;&quot; style=&quot;border: 1px solid rgb(204, 204, 204); vertical-align: middle; padding: 1px; overflow: hidden; max-width: 816px; width: 800px; height: auto;&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 3px 0px; outline: none; line-height: 30px; color: rgb(34, 34, 34); font-family: tahoma, arial, &amp;quot;Microsoft YaHei&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;等待镜像加载完成&lt;/p&gt;&lt;p style=&quot;text-align:center;margin-top: 0px; margin-bottom: 0px; padding: 3px 0px; outline: none; line-height: 30px; color: rgb(34, 34, 34); font-family: tahoma, arial, &amp;quot;Microsoft YaHei&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;img src=&quot;https://hxser.com/zb_users/upload/2024/02/20240205074626170709038633144.png&quot; alt=&quot;&quot; style=&quot;border: 1px solid rgb(204, 204, 204); vertical-align: middle; padding: 1px; overflow: hidden; max-width: 816px; width: 800px; height: auto;&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 3px 0px; outline: none; line-height: 30px; color: rgb(34, 34, 34); font-family: tahoma, arial, &amp;quot;Microsoft YaHei&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;服务初始化中。&lt;/p&gt;&lt;p style=&quot;text-align:center;margin-top: 0px; margin-bottom: 0px; padding: 3px 0px; outline: none; line-height: 30px; color: rgb(34, 34, 34); font-family: tahoma, arial, &amp;quot;Microsoft YaHei&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;img src=&quot;https://hxser.com/zb_users/upload/2024/02/20240205074626170709038690897.png&quot; alt=&quot;&quot; style=&quot;border: 1px solid rgb(204, 204, 204); vertical-align: middle; padding: 1px; overflow: hidden; max-width: 816px; width: 800px; height: auto;&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 3px 0px; outline: none; line-height: 30px; color: rgb(34, 34, 34); font-family: tahoma, arial, &amp;quot;Microsoft YaHei&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;等待2-3 min 后进入安装导向。&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 3px 0px; outline: none; line-height: 30px; color: rgb(34, 34, 34); font-family: tahoma, arial, &amp;quot;Microsoft YaHei&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;（2）ESXi安装导向&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 3px 0px; outline: none; line-height: 30px; color: rgb(34, 34, 34); font-family: tahoma, arial, &amp;quot;Microsoft YaHei&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;该界面描述了一些关于ESXi系统兼容性的信息，点击【Enter】开始安装。&lt;/p&gt;&lt;p style=&quot;text-align:center;margin-top: 0px; margin-bottom: 0px; padding: 3px 0px; outline: none; line-height: 30px; color: rgb(34, 34, 34); font-family: tahoma, arial, &amp;quot;Microsoft YaHei&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;img src=&quot;https://hxser.com/zb_users/upload/2024/02/20240205074626170709038617881.png&quot; alt=&quot;&quot; style=&quot;border: 1px solid rgb(204, 204, 204); vertical-align: middle; padding: 1px; overflow: hidden; max-width: 816px; width: 800px; height: auto;&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 3px 0px; outline: none; line-height: 30px; color: rgb(34, 34, 34); font-family: tahoma, arial, &amp;quot;Microsoft YaHei&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;（3）最终用户许可协议&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 3px 0px; outline: none; line-height: 30px; color: rgb(34, 34, 34); font-family: tahoma, arial, &amp;quot;Microsoft YaHei&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;按【F11】接受协议，进入下一步。&lt;/p&gt;&lt;p style=&quot;text-align:center;margin-top: 0px; margin-bottom: 0px; padding: 3px 0px; outline: none; line-height: 30px; color: rgb(34, 34, 34); font-family: tahoma, arial, &amp;quot;Microsoft YaHei&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;img src=&quot;https://hxser.com/zb_users/upload/2024/02/20240205074626170709038689403.png&quot; alt=&quot;&quot; style=&quot;border: 1px solid rgb(204, 204, 204); vertical-align: middle; padding: 1px; overflow: hidden; max-width: 816px; width: 800px; height: auto;&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 3px 0px; outline: none; line-height: 30px; color: rgb(34, 34, 34); font-family: tahoma, arial, &amp;quot;Microsoft YaHei&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;同意许可协议后，系统会自动扫描可用的磁盘。&lt;/p&gt;&lt;p style=&quot;text-align:center;margin-top: 0px; margin-bottom: 0px; padding: 3px 0px; outline: none; line-height: 30px; color: rgb(34, 34, 34); font-family: tahoma, arial, &amp;quot;Microsoft YaHei&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;img src=&quot;https://hxser.com/zb_users/upload/2024/02/20240205074626170709038687079.png&quot; alt=&quot;&quot; style=&quot;border: 1px solid rgb(204, 204, 204); vertical-align: middle; padding: 1px; overflow: hidden; max-width: 816px; width: 800px; height: auto;&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 3px 0px; outline: none; line-height: 30px; color: rgb(34, 34, 34); font-family: tahoma, arial, &amp;quot;Microsoft YaHei&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;（4）选择系统盘&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 3px 0px; outline: none; line-height: 30px; color: rgb(34, 34, 34); font-family: tahoma, arial, &amp;quot;Microsoft YaHei&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;该页面用于指定使用哪个存储（硬盘）安装ESXi系统。这里只有一个硬盘作为系统盘。默认选项按【Enter】继续下一步。&lt;/p&gt;&lt;p style=&quot;text-align:center;margin-top: 0px; margin-bottom: 0px; padding: 3px 0px; outline: none; line-height: 30px; color: rgb(34, 34, 34); font-family: tahoma, arial, &amp;quot;Microsoft YaHei&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;img src=&quot;https://hxser.com/zb_users/upload/2024/02/20240205074626170709038617189.png&quot; alt=&quot;&quot; style=&quot;border: 1px solid rgb(204, 204, 204); vertical-align: middle; padding: 1px; overflow: hidden; max-width: 816px; width: 800px; height: auto;&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 3px 0px; outline: none; line-height: 30px; color: rgb(34, 34, 34); font-family: tahoma, arial, &amp;quot;Microsoft YaHei&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;（5）选择键盘类型&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 3px 0px; outline: none; line-height: 30px; color: rgb(34, 34, 34); font-family: tahoma, arial, &amp;quot;Microsoft YaHei&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;默认为美国标准，默认选择即可，按【Enter】继续下一步。&lt;/p&gt;&lt;p style=&quot;text-align:center;margin-top: 0px; margin-bottom: 0px; padding: 3px 0px; outline: none; line-height: 30px; color: rgb(34, 34, 34); font-family: tahoma, arial, &amp;quot;Microsoft YaHei&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;img src=&quot;https://hxser.com/zb_users/upload/2024/02/20240205074626170709038612071.png&quot; alt=&quot;&quot; style=&quot;border: 1px solid rgb(204, 204, 204); vertical-align: middle; padding: 1px; overflow: hidden; max-width: 816px; width: 800px; height: auto;&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 3px 0px; outline: none; line-height: 30px; color: rgb(34, 34, 34); font-family: tahoma, arial, &amp;quot;Microsoft YaHei&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 3px 0px; outline: none; line-height: 30px; color: rgb(34, 34, 34); font-family: tahoma, arial, &amp;quot;Microsoft YaHei&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;（6）设置root密码&lt;/p&gt;&lt;p style=&quot;text-align:center;margin-top: 0px; margin-bottom: 0px; padding: 3px 0px; outline: none; line-height: 30px; color: rgb(34, 34, 34); font-family: tahoma, arial, &amp;quot;Microsoft YaHei&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;img src=&quot;https://hxser.com/zb_users/upload/2024/02/20240205074626170709038650987.png&quot; alt=&quot;&quot; style=&quot;border: 1px solid rgb(204, 204, 204); vertical-align: middle; padding: 1px; overflow: hidden; max-width: 816px; width: 800px; height: auto;&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 3px 0px; outline: none; line-height: 30px; color: rgb(34, 34, 34); font-family: tahoma, arial, &amp;quot;Microsoft YaHei&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;ESXi 告警&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 3px 0px; outline: none; line-height: 30px; color: rgb(34, 34, 34); font-family: tahoma, arial, &amp;quot;Microsoft YaHei&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;因为在刚开始设置ESXi 资源时，没有开启CPU虚拟化功能，所以在安装时会有告警提示。可以暂时忽略，待安装完成后，再关机勾选开启CPU虚拟化功能。&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 3px 0px; outline: none; line-height: 30px; color: rgb(34, 34, 34); font-family: tahoma, arial, &amp;quot;Microsoft YaHei&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;如果一开始勾选了CPU虚拟化功能，不会出现该警告。&lt;/p&gt;&lt;p style=&quot;text-align:center;margin-top: 0px; margin-bottom: 0px; padding: 3px 0px; outline: none; line-height: 30px; color: rgb(34, 34, 34); font-family: tahoma, arial, &amp;quot;Microsoft YaHei&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;img src=&quot;https://hxser.com/zb_users/upload/2024/02/20240205074627170709038772269.png&quot; alt=&quot;&quot; style=&quot;border: 1px solid rgb(204, 204, 204); vertical-align: middle; padding: 1px; overflow: hidden; max-width: 816px; width: 800px; height: auto;&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 3px 0px; outline: none; line-height: 30px; color: rgb(34, 34, 34); font-family: tahoma, arial, &amp;quot;Microsoft YaHei&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;（7）确认系统盘&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 3px 0px; outline: none; line-height: 30px; color: rgb(34, 34, 34); font-family: tahoma, arial, &amp;quot;Microsoft YaHei&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;再次确认在指定磁盘中安装ESXi，确认无误后按【F11】进行安装。&lt;/p&gt;&lt;p style=&quot;text-align:center;margin-top: 0px; margin-bottom: 0px; padding: 3px 0px; outline: none; line-height: 30px; color: rgb(34, 34, 34); font-family: tahoma, arial, &amp;quot;Microsoft YaHei&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;img src=&quot;https://hxser.com/zb_users/upload/2024/02/20240205074627170709038741805.png&quot; alt=&quot;&quot; style=&quot;border: 1px solid rgb(204, 204, 204); vertical-align: middle; padding: 1px; overflow: hidden; max-width: 816px; width: 800px; height: auto;&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 3px 0px; outline: none; line-height: 30px; color: rgb(34, 34, 34); font-family: tahoma, arial, &amp;quot;Microsoft YaHei&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;ESXi 8.0 安装中，等待2-3分钟。&lt;/p&gt;&lt;p style=&quot;text-align:center;margin-top: 0px; margin-bottom: 0px; padding: 3px 0px; outline: none; line-height: 30px; color: rgb(34, 34, 34); font-family: tahoma, arial, &amp;quot;Microsoft YaHei&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;img src=&quot;https://hxser.com/zb_users/upload/2024/02/20240205074627170709038719434.png&quot; alt=&quot;&quot; style=&quot;border: 1px solid rgb(204, 204, 204); vertical-align: middle; padding: 1px; overflow: hidden; max-width: 816px; width: 800px; height: auto;&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 3px 0px; outline: none; line-height: 30px; color: rgb(34, 34, 34); font-family: tahoma, arial, &amp;quot;Microsoft YaHei&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;（8）安装完成&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 3px 0px; outline: none; line-height: 30px; color: rgb(34, 34, 34); font-family: tahoma, arial, &amp;quot;Microsoft YaHei&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;按【Enter】重启 ESXi 虚拟机&lt;/p&gt;&lt;p style=&quot;text-align:center;margin-top: 0px; margin-bottom: 0px; padding: 3px 0px; outline: none; line-height: 30px; color: rgb(34, 34, 34); font-family: tahoma, arial, &amp;quot;Microsoft YaHei&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;img src=&quot;https://hxser.com/zb_users/upload/2024/02/20240205074627170709038798696.png&quot; alt=&quot;&quot; style=&quot;border: 1px solid rgb(204, 204, 204); vertical-align: middle; padding: 1px; overflow: hidden; max-width: 816px; width: 800px; height: auto;&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 3px 0px; outline: none; line-height: 30px; color: rgb(34, 34, 34); font-family: tahoma, arial, &amp;quot;Microsoft YaHei&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;ESXi 虚拟机重启需要等待 2-3 min左右。&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 3px 0px; outline: none; line-height: 30px; color: rgb(34, 34, 34); font-family: tahoma, arial, &amp;quot;Microsoft YaHei&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;ESXi 系统初始化配置中。&lt;/p&gt;&lt;p style=&quot;text-align:center;margin-top: 0px; margin-bottom: 0px; padding: 3px 0px; outline: none; line-height: 30px; color: rgb(34, 34, 34); font-family: tahoma, arial, &amp;quot;Microsoft YaHei&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;img src=&quot;https://hxser.com/zb_users/upload/2024/02/20240205074627170709038786799.png&quot; alt=&quot;&quot; style=&quot;border: 1px solid rgb(204, 204, 204); vertical-align: middle; padding: 1px; overflow: hidden; max-width: 816px; width: 800px; height: auto;&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 3px 0px; outline: none; line-height: 30px; color: rgb(34, 34, 34); font-family: tahoma, arial, &amp;quot;Microsoft YaHei&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;（9）系统初始化完成&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 3px 0px; outline: none; line-height: 30px; color: rgb(34, 34, 34); font-family: tahoma, arial, &amp;quot;Microsoft YaHei&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;ESXi 8.0 系统重启完成后，由于我的环境中存在DHCP服务，因此ESXi管理地址能自动获取IP，自动生成IPv6静态链路地址。&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 3px 0px; outline: none; line-height: 30px; color: rgb(34, 34, 34); font-family: tahoma, arial, &amp;quot;Microsoft YaHei&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;如果环境中没有DHCP服务，那么默认管理地址为0.0.0.0，自动生成IPv6静态链路地址。&lt;/p&gt;&lt;p style=&quot;text-align:center;margin-top: 0px; margin-bottom: 0px; padding: 3px 0px; outline: none; line-height: 30px; color: rgb(34, 34, 34); font-family: tahoma, arial, &amp;quot;Microsoft YaHei&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;img src=&quot;https://hxser.com/zb_users/upload/2024/02/20240205074627170709038777333.png&quot; alt=&quot;&quot; style=&quot;border: 1px solid rgb(204, 204, 204); vertical-align: middle; padding: 1px; overflow: hidden; max-width: 816px; width: 800px; height: auto;&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 3px 0px; outline: none; line-height: 30px; color: rgb(34, 34, 34); font-family: tahoma, arial, &amp;quot;Microsoft YaHei&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;此时ESXi 8.0 系统安装完成。&lt;/p&gt;&lt;p&gt;&amp;nbsp;配置ESXI8.0&lt;/p&gt;&lt;p&gt;按F2，弹出登录页面，输入刚才设定的密码。回车，进入ESXI管理后台。&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;img src=&quot;https://hxser.com/zb_users/upload/2024/02/202402051707090187881426.jpeg&quot; alt=&quot;274488ff005cf491018e488ef8ad0500_c6ef03f1ab2d4709bd6ebafcad8ba542.jpeg&quot; width=&quot;781&quot; height=&quot;704&quot; style=&quot;width: 781px; height: 704px;&quot;/&gt;&lt;/p&gt;&lt;p&gt;第一项是修改密码，第三项是设置网络。键盘上下键选择第三项，修改网络配置，回车进入：&lt;/p&gt;&lt;p&gt;选择第一项，设置网口&lt;br/&gt;&lt;/p&gt;&lt;p&gt;选择设置IPV4和DNS&lt;/p&gt;&lt;p&gt;键盘上下键，移动黑色条框到第三项，可以看到第三项前面的括号里有个圆圈(○)，按空格确定选项。设置静态ip&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;img src=&quot;https://hxser.com/zb_users/upload/2024/02/202402051707090273102762.jpeg&quot; alt=&quot;dae75027d17ab0e7ea0f2854618c2345_3f3304bd1c4546aca6d03880eaac5dbd.jpeg&quot; width=&quot;800&quot; height=&quot;778&quot; style=&quot;width: 800px; height: 778px;&quot;/&gt;&lt;/p&gt;&lt;p&gt;保存后回到首页，变成静态ip&lt;br/&gt;&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 3px 0px; outline: none; line-height: 30px; color: rgb(34, 34, 34); font-family: tahoma, arial, &amp;quot;Microsoft YaHei&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;（10）验证&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 3px 0px; outline: none; line-height: 30px; color: rgb(34, 34, 34); font-family: tahoma, arial, &amp;quot;Microsoft YaHei&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;通过跳板机访问 ESXi Host Client。&lt;/p&gt;&lt;p style=&quot;text-align:center;margin-top: 0px; margin-bottom: 0px; padding: 3px 0px; outline: none; line-height: 30px; color: rgb(34, 34, 34); font-family: tahoma, arial, &amp;quot;Microsoft YaHei&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;img src=&quot;https://hxser.com/zb_users/upload/2024/02/20240205074627170709038761036.jpg&quot; alt=&quot;&quot; style=&quot;border: 1px solid rgb(204, 204, 204); vertical-align: middle; padding: 1px; overflow: hidden; max-width: 816px; width: 800px; height: auto;&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 3px 0px; outline: none; line-height: 30px; color: rgb(34, 34, 34); font-family: tahoma, arial, &amp;quot;Microsoft YaHei&amp;quot;; font-size: 16px; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;ESXi 8.0 安装成功。&lt;/p&gt;&lt;p&gt;*安装虚拟系统，引导需要5秒内按enter&lt;/p&gt;</description><pubDate>Mon, 05 Feb 2024 07:37:03 +0800</pubDate></item><item><title>将 Windows 完整安装到U盘</title><link>https://hxser.com/post/44.html</link><description>&lt;p style=&quot;overflow-wrap: break-word; margin-top: 0px; margin-bottom: 0px; padding: 0px; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255); line-height: 24px;&quot;&gt;&lt;span style=&quot;font-size:16px;overflow-wrap: break-word;&quot;&gt;Windows To Go，可以将 Windows 完整安装到U盘、移动硬盘等便携设备上，并且能随处在不同的电脑硬件上直接运行，让系统可以随身携带！&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;overflow-wrap: break-word; margin-top: 0px; margin-bottom: 0px; padding: 0px; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255); line-height: 24px;&quot;&gt;&lt;span style=&quot;font-size:16px;overflow-wrap: break-word;&quot;&gt;&lt;br style=&quot;overflow-wrap: break-word;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;overflow-wrap: break-word; margin-top: 0px; margin-bottom: 0px; padding: 0px; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255); line-height: 24px;&quot;&gt;&lt;span style=&quot;overflow-wrap: break-word; font-weight: 700;&quot;&gt;&lt;span style=&quot;font-size:16px;overflow-wrap: break-word;&quot;&gt;目前支持从优盘运行的操作系统&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;overflow-wrap: break-word; margin-top: 0px; margin-bottom: 0px; padding: 0px; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255); line-height: 24px;&quot;&gt;Windows7、Windows 8、Windows8.1、Windows 10、Windows Server 2012、Windows Server 2012 R2&lt;/p&gt;&lt;p style=&quot;overflow-wrap: break-word; margin-top: 0px; margin-bottom: 0px; padding: 0px; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255); line-height: 24px;&quot;&gt;&lt;span style=&quot;color:#ff0000;overflow-wrap: break-word;&quot;&gt;推荐使用Windows10 企业版，可以避免很多问题。&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;overflow-wrap: break-word; margin-top: 0px; margin-bottom: 0px; padding: 0px; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255); line-height: 24px;&quot;&gt;&lt;span style=&quot;color:#ff0000;overflow-wrap: break-word;&quot;&gt;&lt;br style=&quot;overflow-wrap: break-word;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;overflow-wrap: break-word; margin-top: 0px; margin-bottom: 0px; padding: 0px; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255); line-height: 24px;&quot;&gt;&lt;span style=&quot;overflow-wrap: break-word; font-weight: 700;&quot;&gt;&lt;span style=&quot;font-size:16px;overflow-wrap: break-word;&quot;&gt;支持的优盘&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div align=&quot;left&quot; style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;div align=&quot;left&quot; style=&quot;overflow-wrap: break-word;&quot;&gt;&lt;span style=&quot;font-size:16px;overflow-wrap: break-word;&quot;&gt;至少16G容量优盘或移动硬盘，&lt;/span&gt;&lt;span style=&quot;font-size:16px;overflow-wrap: break-word;&quot;&gt;&lt;span style=&quot;color:#000000;overflow-wrap: break-word;&quot;&gt;这里介绍了哪些优盘适合制作：&lt;a href=&quot;https://bbs.luobotou.org/thread-10680-1-1.html&quot; target=&quot;_blank&quot; style=&quot;overflow-wrap: break-word; color: rgb(51, 51, 51);&quot;&gt;https://bbs.luobotou.org/thread-10680-1-1.html&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;p&gt;&lt;br style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;/&gt;&lt;/p&gt;&lt;div align=&quot;left&quot; style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;div align=&quot;left&quot; style=&quot;overflow-wrap: break-word;&quot;&gt;------------------------------------------------------------------------------&lt;/div&gt;&lt;br style=&quot;overflow-wrap: break-word;&quot;/&gt;&lt;br style=&quot;overflow-wrap: break-word;&quot;/&gt;&lt;br style=&quot;overflow-wrap: break-word;&quot;/&gt;&lt;/div&gt;&lt;p style=&quot;overflow-wrap: break-word; margin-top: 0px; margin-bottom: 0px; padding: 0px; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255); line-height: 24px;&quot;&gt;&lt;span style=&quot;overflow-wrap: break-word; font-weight: 700;&quot;&gt;&lt;span style=&quot;font-size:16px;overflow-wrap: break-word;&quot;&gt;下面是制作Windows To Go的具体步骤：&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;overflow-wrap: break-word; margin-top: 0px; margin-bottom: 0px; padding: 0px; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255); line-height: 24px;&quot;&gt;&lt;span style=&quot;font-size:16px;overflow-wrap: break-word;&quot;&gt;&lt;span style=&quot;overflow-wrap: break-word; font-weight: 700;&quot;&gt;一、准备工作&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;overflow-wrap: break-word; margin-top: 0px; margin-bottom: 0px; padding: 0px; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255); line-height: 24px;&quot;&gt;&lt;span style=&quot;font-size:16px;overflow-wrap: break-word;&quot;&gt;1.系统iso文件，如果之前没下载的话，推荐下载&lt;a href=&quot;https://bbs.luobotou.org/forum.php?mod=viewthread&amp;tid=17755&amp;fromuid=1&quot; target=&quot;_blank&quot; style=&quot;overflow-wrap: break-word; color: rgb(51, 51, 51);&quot;&gt;Win10&lt;/a&gt;。&lt;/span&gt;&lt;/p&gt;&lt;div align=&quot;left&quot; style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;div align=&quot;left&quot; style=&quot;overflow-wrap: break-word;&quot;&gt;&lt;span style=&quot;font-size:16px;overflow-wrap: break-word;&quot;&gt;&lt;br style=&quot;overflow-wrap: break-word;&quot;/&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div align=&quot;left&quot; style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;div align=&quot;left&quot; style=&quot;overflow-wrap: break-word;&quot;&gt;&lt;span style=&quot;color:#000000;overflow-wrap: break-word;&quot;&gt;&lt;span style=&quot;font-size:16px;overflow-wrap: break-word;&quot;&gt;2.虚拟光驱或解压软件（&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-size:16px;overflow-wrap: break-word;&quot;&gt;&lt;span style=&quot;color:#000;overflow-wrap: break-word;&quot;&gt;本机WIN8及以上系统不需要，WIN7系统&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-size:16px;overflow-wrap: break-word;&quot;&gt;&lt;span style=&quot;color:#000;overflow-wrap: break-word;&quot;&gt;推荐：使用&lt;a href=&quot;https://bbs.luobotou.org/thread-6682-1-1.html&quot; target=&quot;_blank&quot; style=&quot;overflow-wrap: break-word; color: rgb(51, 51, 51);&quot;&gt;魔方虚拟光驱&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-size:16px;overflow-wrap: break-word;&quot;&gt;&lt;span style=&quot;color:#000;overflow-wrap: break-word;&quot;&gt;）&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div align=&quot;left&quot; style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;div align=&quot;left&quot; style=&quot;overflow-wrap: break-word;&quot;&gt;&lt;span style=&quot;font-size:16px;overflow-wrap: break-word;&quot;&gt;&lt;span style=&quot;color:#000;overflow-wrap: break-word;&quot;&gt;&lt;br style=&quot;overflow-wrap: break-word;&quot;/&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div align=&quot;left&quot; style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;div align=&quot;left&quot; style=&quot;overflow-wrap: break-word;&quot;&gt;&lt;span style=&quot;font-size:16px;overflow-wrap: break-word;&quot;&gt;&lt;span style=&quot;color:#000000;overflow-wrap: break-word;&quot;&gt;3.制作程序&lt;a href=&quot;https://bbs.luobotou.org/thread-761-1-1.html&quot; target=&quot;_blank&quot; style=&quot;overflow-wrap: break-word; color: rgb(51, 51, 51);&quot;&gt;WTG辅助工具&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;p&gt;&lt;span style=&quot;font-family:微软雅黑;overflow-wrap: break-word; color: #444444; text-wrap: wrap; background-color: #FFFFFF;&quot;&gt;&lt;div align=&quot;left&quot; style=&quot;overflow-wrap: break-word;&quot;&gt;&lt;span style=&quot;color:#ff0000;overflow-wrap: break-word;&quot;&gt;&lt;br style=&quot;overflow-wrap: break-word;&quot;/&gt;&lt;/span&gt;&lt;/div&gt;&lt;br style=&quot;overflow-wrap: break-word;&quot;/&gt;&lt;span style=&quot;color:#ff0000;overflow-wrap: break-word;&quot;&gt;&lt;br style=&quot;overflow-wrap: break-word;&quot;/&gt;&lt;div align=&quot;left&quot; style=&quot;overflow-wrap: break-word;&quot;&gt;注意事项：&lt;/div&gt;&lt;br style=&quot;overflow-wrap: break-word;&quot;/&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family:微软雅黑;overflow-wrap: break-word; color: #444444; text-wrap: wrap; background-color: #FFFFFF;&quot;&gt;&lt;div align=&quot;left&quot; style=&quot;overflow-wrap: break-word;&quot;&gt;1.本程序与电脑管家不兼容，须卸载后再使用。&lt;/div&gt;&lt;br style=&quot;overflow-wrap: break-word;&quot;/&gt;&lt;/span&gt;&lt;span style=&quot;font-family:微软雅黑;overflow-wrap: break-word; color: #444444; text-wrap: wrap; background-color: #FFFFFF;&quot;&gt;&lt;div align=&quot;left&quot; style=&quot;overflow-wrap: break-word;&quot;&gt;2.不建议在虚拟机环境下运行。&lt;/div&gt;&lt;br style=&quot;overflow-wrap: break-word;&quot;/&gt;&lt;/span&gt;&lt;span style=&quot;font-family:微软雅黑;overflow-wrap: break-word; color: #444444; text-wrap: wrap; background-color: #FFFFFF;&quot;&gt;&lt;div align=&quot;left&quot; style=&quot;overflow-wrap: break-word;&quot;&gt;3.尽量不要将程序放在中文目录下。&lt;/div&gt;&lt;br style=&quot;overflow-wrap: break-word;&quot;/&gt;&lt;/span&gt;&lt;span style=&quot;font-family:微软雅黑;overflow-wrap: break-word; color: #444444; text-wrap: wrap; background-color: #FFFFFF;&quot;&gt;&lt;div align=&quot;left&quot; style=&quot;overflow-wrap: break-word;&quot;&gt;4.不推荐安装Windows 7 系统，任何OEM版本和90天试用版都不推荐使用！（如果使用ESD文件，需要提前解密）&lt;/div&gt;&lt;br style=&quot;overflow-wrap: break-word;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;div align=&quot;left&quot; style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;&gt;------------------------------------------------------------------------------&lt;/div&gt;&lt;p&gt;&lt;br style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;/&gt;&lt;br style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;/&gt;&lt;span style=&quot;overflow-wrap: break-word; font-weight: 700; color: #444444; font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: #FFFFFF;&quot;&gt;&lt;div align=&quot;left&quot; style=&quot;overflow-wrap: break-word;&quot;&gt;&lt;span style=&quot;overflow-wrap: break-word;&quot;&gt;&lt;span style=&quot;font-size:16px;overflow-wrap: break-word;&quot;&gt;二、开始制作&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;br style=&quot;overflow-wrap: break-word;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;div align=&quot;left&quot; style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-size:18px;overflow-wrap: break-word;&quot;&gt;1.将Win系统镜像加载至虚拟光驱&amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;p&gt;&lt;br style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;/&gt;&lt;/p&gt;&lt;div align=&quot;left&quot; style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-size:16px;overflow-wrap: break-word;&quot;&gt;&lt;br style=&quot;overflow-wrap: break-word;&quot;/&gt;&lt;/span&gt;&lt;/div&gt;&lt;p&gt;&lt;br style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;/&gt;&lt;/p&gt;&lt;div align=&quot;left&quot; style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-size:16px;overflow-wrap: break-word;&quot;&gt;方法一：&lt;/span&gt;&lt;/div&gt;&lt;p&gt;&lt;br style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;/&gt;&lt;span style=&quot;font-size:16px;overflow-wrap: break-word; color: #444444; font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: #FFFFFF;&quot;&gt;&lt;div align=&quot;left&quot; style=&quot;overflow-wrap: break-word;&quot;&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;span style=&quot;color:#ff0000;overflow-wrap: break-word;&quot;&gt;Win8及以上系统，双击打开ISO文件即可加载。&lt;/span&gt;&lt;/div&gt;&lt;br style=&quot;overflow-wrap: break-word;&quot;/&gt;&lt;/span&gt;&lt;span style=&quot;font-size:16px;overflow-wrap: break-word; color: #444444; font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: #FFFFFF;&quot;&gt;&lt;br style=&quot;overflow-wrap: break-word;&quot;/&gt;&lt;div align=&quot;left&quot; style=&quot;overflow-wrap: break-word;&quot;&gt;&lt;span style=&quot;font-size:16px;overflow-wrap: break-word;&quot;&gt;&amp;nbsp;&amp;nbsp;方法二：&lt;/span&gt;&lt;span style=&quot;font-size:16px;overflow-wrap: break-word;&quot;&gt;魔方虚拟光驱（适用于WIN7 XP系统）&lt;/span&gt;&lt;/div&gt;&lt;br style=&quot;overflow-wrap: break-word;&quot;/&gt;&lt;/span&gt;&lt;span style=&quot;font-size:16px;overflow-wrap: break-word; color: #444444; font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: #FFFFFF;&quot;&gt;&lt;div align=&quot;left&quot; style=&quot;overflow-wrap: break-word;&quot;&gt;&amp;nbsp; &amp;nbsp; 1)点击加载镜像&lt;/div&gt;&lt;br style=&quot;overflow-wrap: break-word;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;div align=&quot;center&quot; style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;ignore_js_op style=&quot;overflow-wrap: break-word;&quot;&gt;&lt;img id=&quot;aimg_3458&quot; aid=&quot;3458&quot; src=&quot;https://bbs.luobotou.org/forum.php?mod=attachment&amp;aid=MzQ1OHw3ZDQ2YzI5M3wxNzAzMjEyMjMwfDB8MjQyNw%3D%3D&amp;noupdate=yes&quot; zoomfile=&quot;forum.php?mod=attachment&amp;amp;aid=MzQ1OHw3ZDQ2YzI5M3wxNzAzMjEyMjMwfDB8MjQyNw%3D%3D&amp;amp;noupdate=yes&amp;amp;nothumb=yes&quot; file=&quot;forum.php?mod=attachment&amp;amp;aid=MzQ1OHw3ZDQ2YzI5M3wxNzAzMjEyMjMwfDB8MjQyNw%3D%3D&amp;amp;noupdate=yes&quot; class=&quot;zoom&quot; width=&quot;658&quot; inpost=&quot;1&quot; initialized=&quot;true&quot; style=&quot;overflow-wrap: break-word; cursor: pointer;&quot;/&gt;&lt;/ignore_js_op&gt;&lt;/div&gt;&lt;p&gt;&lt;br style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;/&gt;&lt;br style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;/&gt;&lt;/p&gt;&lt;div align=&quot;left&quot; style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&amp;nbsp; &amp;nbsp; 2)选择下载的Win镜像文件&lt;/div&gt;&lt;p&gt;&lt;br style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;/&gt;&lt;br style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;/&gt;&lt;/p&gt;&lt;div align=&quot;center&quot; style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;ignore_js_op style=&quot;overflow-wrap: break-word;&quot;&gt;&lt;img id=&quot;aimg_3459&quot; aid=&quot;3459&quot; src=&quot;https://bbs.luobotou.org/forum.php?mod=attachment&amp;aid=MzQ1OXw0MGQyZWY2MHwxNzAzMjEyMjMwfDB8MjQyNw%3D%3D&amp;noupdate=yes&quot; zoomfile=&quot;forum.php?mod=attachment&amp;amp;aid=MzQ1OXw0MGQyZWY2MHwxNzAzMjEyMjMwfDB8MjQyNw%3D%3D&amp;amp;noupdate=yes&amp;amp;nothumb=yes&quot; file=&quot;forum.php?mod=attachment&amp;amp;aid=MzQ1OXw0MGQyZWY2MHwxNzAzMjEyMjMwfDB8MjQyNw%3D%3D&amp;amp;noupdate=yes&quot; class=&quot;zoom&quot; width=&quot;571&quot; inpost=&quot;1&quot; initialized=&quot;true&quot; style=&quot;overflow-wrap: break-word; cursor: pointer;&quot;/&gt;&lt;/ignore_js_op&gt;&lt;/div&gt;&lt;p&gt;&lt;br style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;/&gt;&lt;br style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;/&gt;&lt;span style=&quot;font-size:16px;overflow-wrap: break-word; color: #444444; font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: #FFFFFF;&quot;&gt;&lt;div align=&quot;left&quot; style=&quot;overflow-wrap: break-word;&quot;&gt;&lt;span style=&quot;color:#000000;overflow-wrap: break-word;&quot;&gt;2.打开&lt;a href=&quot;https://bbs.luobotou.org/thread-761-1-1.html&quot; target=&quot;_blank&quot; class=&quot;relatedlink&quot; style=&quot;overflow-wrap: break-word; color: rgb(51, 51, 51); border-bottom: 1px solid blue;&quot;&gt;WTG辅助工具&lt;/a&gt;，单击“点此选择....文件”文字&lt;/span&gt;&lt;/div&gt;&lt;br style=&quot;overflow-wrap: break-word;&quot;/&gt;&lt;div align=&quot;left&quot; style=&quot;overflow-wrap: break-word;&quot;&gt;&lt;span style=&quot;overflow-wrap: break-word; font-weight: 700;&quot;&gt;&lt;span style=&quot;color:#ff0000;overflow-wrap: break-word;&quot;&gt;&lt;br style=&quot;overflow-wrap: break-word;&quot;/&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;br style=&quot;overflow-wrap: break-word;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;div align=&quot;center&quot; style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;ignore_js_op style=&quot;overflow-wrap: break-word;&quot;&gt;&lt;img id=&quot;aimg_7890&quot; aid=&quot;7890&quot; src=&quot;https://bbs.luobotou.org/forum.php?mod=attachment&amp;aid=Nzg5MHw4NmRhOGI2MnwxNzAzMjEyMjMwfDB8MjQyNw%3D%3D&quot; zoomfile=&quot;forum.php?mod=attachment&amp;amp;aid=Nzg5MHw4NmRhOGI2MnwxNzAzMjEyMjMwfDB8MjQyNw%3D%3D&amp;amp;noupdate=yes&amp;amp;nothumb=yes&quot; file=&quot;forum.php?mod=attachment&amp;amp;aid=Nzg5MHw4NmRhOGI2MnwxNzAzMjEyMjMwfDB8MjQyNw%3D%3D&quot; class=&quot;zoom&quot; width=&quot;757&quot; inpost=&quot;1&quot; initialized=&quot;true&quot; style=&quot;overflow-wrap: break-word; cursor: pointer;&quot;/&gt;&lt;/ignore_js_op&gt;&lt;/div&gt;&lt;p&gt;&lt;br style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;/&gt;&lt;br style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;/&gt;&lt;/p&gt;&lt;div align=&quot;left&quot; style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;color:#000000;overflow-wrap: break-word;&quot;&gt;&lt;span style=&quot;font-size:16px;overflow-wrap: break-word;&quot;&gt;选择虚拟光驱中&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;color:#ff0000;overflow-wrap: break-word;&quot;&gt;&lt;span style=&quot;font-size:16px;overflow-wrap: break-word;&quot;&gt;&lt;span style=&quot;overflow-wrap: break-word; font-weight: 700;&quot;&gt;sources&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;color:#000000;overflow-wrap: break-word;&quot;&gt;&lt;span style=&quot;font-size:16px;overflow-wrap: break-word;&quot;&gt;文件夹中的&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;overflow-wrap: break-word; font-weight: 700;&quot;&gt;&lt;span style=&quot;color:#ff0000;overflow-wrap: break-word;&quot;&gt;install.wim&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;p&gt;&lt;br style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;/&gt;&lt;br style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;/&gt;&lt;/p&gt;&lt;div align=&quot;center&quot; style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;ignore_js_op style=&quot;overflow-wrap: break-word;&quot;&gt;&lt;img id=&quot;aimg_7891&quot; aid=&quot;7891&quot; src=&quot;https://bbs.luobotou.org/forum.php?mod=attachment&amp;aid=Nzg5MXwwM2FmNzMxYnwxNzAzMjEyMjMwfDB8MjQyNw%3D%3D&quot; zoomfile=&quot;forum.php?mod=attachment&amp;amp;aid=Nzg5MXwwM2FmNzMxYnwxNzAzMjEyMjMwfDB8MjQyNw%3D%3D&amp;amp;noupdate=yes&amp;amp;nothumb=yes&quot; file=&quot;forum.php?mod=attachment&amp;amp;aid=Nzg5MXwwM2FmNzMxYnwxNzAzMjEyMjMwfDB8MjQyNw%3D%3D&quot; class=&quot;zoom&quot; width=&quot;624&quot; inpost=&quot;1&quot; initialized=&quot;true&quot; style=&quot;overflow-wrap: break-word; cursor: pointer;&quot;/&gt;&lt;/ignore_js_op&gt;&lt;/div&gt;&lt;p&gt;&lt;br style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;/&gt;&lt;br style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;/&gt;&lt;/p&gt;&lt;div align=&quot;left&quot; style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-size:18px;overflow-wrap: break-word;&quot;&gt;3.选择移动磁盘&lt;/span&gt;&lt;/div&gt;&lt;p&gt;&lt;br style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;/&gt;&lt;/p&gt;&lt;div align=&quot;left&quot; style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-size:16px;overflow-wrap: break-word;&quot;&gt;如果优盘没有出现在列表中，可在&lt;span style=&quot;overflow-wrap: break-word; font-weight: 700;&quot;&gt;右键&lt;/span&gt;菜单中选择手动选择&lt;/span&gt;&lt;/div&gt;&lt;p&gt;&lt;br style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;/&gt;&lt;span style=&quot;font-size:16px;overflow-wrap: break-word; color: #444444; font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: #FFFFFF;&quot;&gt;&lt;br style=&quot;overflow-wrap: break-word;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;div align=&quot;center&quot; style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;ignore_js_op style=&quot;overflow-wrap: break-word;&quot;&gt;&lt;img id=&quot;aimg_7892&quot; aid=&quot;7892&quot; src=&quot;https://bbs.luobotou.org/forum.php?mod=attachment&amp;aid=Nzg5Mnw3NTBiNWY0NHwxNzAzMjEyMjMwfDB8MjQyNw%3D%3D&quot; zoomfile=&quot;forum.php?mod=attachment&amp;amp;aid=Nzg5Mnw3NTBiNWY0NHwxNzAzMjEyMjMwfDB8MjQyNw%3D%3D&amp;amp;noupdate=yes&amp;amp;nothumb=yes&quot; file=&quot;forum.php?mod=attachment&amp;amp;aid=Nzg5Mnw3NTBiNWY0NHwxNzAzMjEyMjMwfDB8MjQyNw%3D%3D&quot; class=&quot;zoom&quot; width=&quot;607&quot; inpost=&quot;1&quot; initialized=&quot;true&quot; style=&quot;overflow-wrap: break-word; cursor: pointer;&quot;/&gt;&lt;/ignore_js_op&gt;&lt;/div&gt;&lt;p&gt;&lt;br style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;/&gt;&lt;br style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;/&gt;&lt;/p&gt;&lt;div align=&quot;left&quot; style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-size:18px;overflow-wrap: break-word;&quot;&gt;4.选择模式及高级选项。&lt;/span&gt;&lt;/div&gt;&lt;p&gt;&lt;br style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;/&gt;&lt;/p&gt;&lt;div align=&quot;left&quot; style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-size:18px;overflow-wrap: break-word;&quot;&gt;&lt;br style=&quot;overflow-wrap: break-word;&quot;/&gt;&lt;/span&gt;&lt;/div&gt;&lt;p&gt;&lt;br style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;/&gt;&lt;/p&gt;&lt;div align=&quot;left&quot; style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;&gt;一般情况不需要修改，具体作用可点击程序上的问号按钮查看。&lt;/div&gt;&lt;p&gt;&lt;br style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;/&gt;&lt;/p&gt;&lt;div align=&quot;left&quot; style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-size:16px;overflow-wrap: break-word;&quot;&gt;&lt;br style=&quot;overflow-wrap: break-word;&quot;/&gt;&lt;/span&gt;&lt;/div&gt;&lt;p&gt;&lt;br style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;/&gt;&lt;span style=&quot;font-size:16px;overflow-wrap: break-word; color: #444444; font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: #FFFFFF;&quot;&gt;&lt;div align=&quot;left&quot; style=&quot;overflow-wrap: break-word;&quot;&gt;&lt;span style=&quot;color:#ff0000;overflow-wrap: break-word;&quot;&gt;注意：&lt;/span&gt;&lt;/div&gt;&lt;br style=&quot;overflow-wrap: break-word;&quot;/&gt;&lt;/span&gt;&lt;span style=&quot;font-size:16px;overflow-wrap: break-word; color: #444444; font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: #FFFFFF;&quot;&gt;&lt;div align=&quot;left&quot; style=&quot;overflow-wrap: break-word;&quot;&gt;&amp;nbsp;&amp;nbsp;1)如果您的优盘在计算机中被识别为可移动磁盘，只能使用&lt;a href=&quot;https://bbs.luobotou.org/thread-5964-1-1.html&quot; target=&quot;_blank&quot; class=&quot;relatedlink&quot; style=&quot;overflow-wrap: break-word; color: rgb(51, 51, 51); border-bottom: 1px solid blue;&quot;&gt;VHD&lt;/a&gt;、&lt;a href=&quot;https://bbs.luobotou.org/thread-5964-1-1.html&quot; target=&quot;_blank&quot; class=&quot;relatedlink&quot; style=&quot;overflow-wrap: break-word; color: rgb(51, 51, 51); border-bottom: 1px solid blue;&quot;&gt;VHDX&lt;/a&gt;模式。&lt;/div&gt;&lt;br style=&quot;overflow-wrap: break-word;&quot;/&gt;&lt;/span&gt;&lt;span style=&quot;font-size:16px;overflow-wrap: break-word; color: #444444; font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: #FFFFFF;&quot;&gt;&lt;div align=&quot;left&quot; style=&quot;overflow-wrap: break-word;&quot;&gt;&amp;nbsp;&amp;nbsp;2)如果您使用2015年MAC电脑，请勾选UEFI+GPT制作，如果您的优盘不支持此模式，请参照论坛相关教程制作。&lt;/div&gt;&lt;br style=&quot;overflow-wrap: break-word;&quot;/&gt;&lt;/span&gt;&lt;span style=&quot;font-size:16px;overflow-wrap: break-word; color: #444444; font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: #FFFFFF;&quot;&gt;&lt;br style=&quot;overflow-wrap: break-word;&quot;/&gt;&lt;/span&gt;&lt;br style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;/&gt;&lt;/p&gt;&lt;div align=&quot;left&quot; style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-size:18px;overflow-wrap: break-word;&quot;&gt;5.点击创建按钮开始制作&lt;/span&gt;&lt;/div&gt;&lt;p&gt;&lt;br style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;/&gt;&lt;/p&gt;&lt;div align=&quot;left&quot; style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-size:18px;overflow-wrap: break-word;&quot;&gt;&lt;br style=&quot;overflow-wrap: break-word;&quot;/&gt;&lt;/span&gt;&lt;/div&gt;&lt;p&gt;&lt;br style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;/&gt;&lt;/p&gt;&lt;div align=&quot;left&quot; style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;&gt;再次确认所选择的优盘&lt;/div&gt;&lt;p&gt;&lt;br style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;/&gt;&lt;br style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;/&gt;&lt;/p&gt;&lt;div align=&quot;center&quot; style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;ignore_js_op style=&quot;overflow-wrap: break-word;&quot;&gt;&lt;img id=&quot;aimg_7893&quot; aid=&quot;7893&quot; src=&quot;https://bbs.luobotou.org/forum.php?mod=attachment&amp;aid=Nzg5M3w4NDYxNGY0MXwxNzAzMjEyMjMwfDB8MjQyNw%3D%3D&quot; zoomfile=&quot;forum.php?mod=attachment&amp;amp;aid=Nzg5M3w4NDYxNGY0MXwxNzAzMjEyMjMwfDB8MjQyNw%3D%3D&amp;amp;noupdate=yes&amp;amp;nothumb=yes&quot; file=&quot;forum.php?mod=attachment&amp;amp;aid=Nzg5M3w4NDYxNGY0MXwxNzAzMjEyMjMwfDB8MjQyNw%3D%3D&quot; class=&quot;zoom&quot; width=&quot;359&quot; inpost=&quot;1&quot; style=&quot;overflow-wrap: break-word; cursor: pointer;&quot;/&gt;&lt;/ignore_js_op&gt;&lt;/div&gt;&lt;p&gt;&lt;br style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;/&gt;&lt;br style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;/&gt;&lt;span style=&quot;font-size:16px;overflow-wrap: break-word; color: #444444; font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: #FFFFFF;&quot;&gt;&lt;div align=&quot;left&quot; style=&quot;overflow-wrap: break-word;&quot;&gt;耐心等待，大约需要几分钟或者几十分钟，与优盘速度有关，如果制作时间超过半小时，您的优盘很可能不适合制作Windows To Go。&lt;/div&gt;&lt;/span&gt;&lt;br style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;/&gt;&lt;span style=&quot;font-size:16px;overflow-wrap: break-word; color: #444444; font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: #FFFFFF;&quot;&gt;&lt;div align=&quot;left&quot; style=&quot;overflow-wrap: break-word;&quot;&gt;等到弹出完成提示框。&lt;/div&gt;&lt;br style=&quot;overflow-wrap: break-word;&quot;/&gt;&lt;/span&gt;&lt;br style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;/&gt;&lt;/p&gt;&lt;div align=&quot;center&quot; style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;ignore_js_op style=&quot;overflow-wrap: break-word;&quot;&gt;&lt;img id=&quot;aimg_7894&quot; aid=&quot;7894&quot; src=&quot;https://bbs.luobotou.org/forum.php?mod=attachment&amp;aid=Nzg5NHw2MTNjNjYxNXwxNzAzMjEyMjMwfDB8MjQyNw%3D%3D&quot; zoomfile=&quot;forum.php?mod=attachment&amp;amp;aid=Nzg5NHw2MTNjNjYxNXwxNzAzMjEyMjMwfDB8MjQyNw%3D%3D&amp;amp;noupdate=yes&amp;amp;nothumb=yes&quot; file=&quot;forum.php?mod=attachment&amp;amp;aid=Nzg5NHw2MTNjNjYxNXwxNzAzMjEyMjMwfDB8MjQyNw%3D%3D&quot; class=&quot;zoom&quot; width=&quot;282&quot; inpost=&quot;1&quot; initialized=&quot;true&quot; style=&quot;overflow-wrap: break-word; cursor: pointer;&quot;/&gt;&lt;/ignore_js_op&gt;&lt;/div&gt;&lt;p&gt;&lt;br style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;/&gt;&lt;br style=&quot;overflow-wrap: break-word; color: rgb(68, 68, 68); font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;/&gt;&lt;span style=&quot;font-size:16px;overflow-wrap: break-word; color: #444444; font-family: &amp;quot;Microsoft Yahei&amp;quot;, Tahoma, Simsun; text-wrap: wrap; background-color: #FFFFFF;&quot;&gt;&lt;div align=&quot;left&quot; style=&quot;overflow-wrap: break-word;&quot;&gt;&lt;br/&gt;&lt;/div&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Fri, 22 Dec 2023 10:31:48 +0800</pubDate></item><item><title>搭建MySQL数据库服务器</title><link>https://hxser.com/post/43.html</link><description>&lt;div class=&quot;dpu8C _2kCxD &quot; style=&quot;max-width: 100%; overflow-x: visible; font-size: 18px; line-height: 30px; color: rgb(34, 34, 34); font-family: arial; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;p style=&quot;overflow-y: auto; max-width: 100%; line-height: 30px; margin-top: 0px !important; margin-bottom: 0px !important; padding: 0px !important;&quot;&gt;&lt;span style=&quot;max-width: 100%; color: #24292F; --tt-darkmode-color: #24292F;&quot;&gt;搭建MySQL数据库服务器是在Linux系统上构建稳定和可靠的数据库环境的关键步骤。下面将为您提供一个快速入门指南，步骤如下：&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;dpu8C _2kCxD &quot; style=&quot;max-width: 100%; overflow-x: visible; font-size: 18px; line-height: 30px; color: rgb(34, 34, 34); margin-top: 24px; font-family: arial; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;p style=&quot;overflow-y: auto; max-width: 100%; line-height: 30px; margin-top: 0px !important; margin-bottom: 0px !important; padding: 0px !important;&quot;&gt;&lt;span style=&quot;max-width: 100%; color: #24292F; --tt-darkmode-color: #24292F;&quot;&gt;1、准备工作： 在开始之前，确保您已经获得了Linux系统的管理员权限，并且已经安装好了合适版本的MySQL软件。您可以从MySQL官方网站下载最新版本的MySQL软件。&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;dpu8C _2kCxD &quot; style=&quot;max-width: 100%; overflow-x: visible; font-size: 18px; line-height: 30px; color: rgb(34, 34, 34); margin-top: 24px; font-family: arial; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;p style=&quot;overflow-y: auto; max-width: 100%; line-height: 30px; margin-top: 0px !important; margin-bottom: 0px !important; padding: 0px !important;&quot;&gt;&lt;span style=&quot;max-width: 100%; color: #24292F; --tt-darkmode-color: #24292F;&quot;&gt;2、安装MySQL： 使用系统的包管理工具，比如yum或apt-get，来安装MySQL软件。根据您所使用的Linux发行版的不同，命令可能会稍有不同，以下是一些常见的安装命令： 对于CentOS/RHEL系统：&lt;/span&gt;&lt;/p&gt;&lt;pre class=&quot;prism-highlight prism-language-basic&quot;&gt;sudo&amp;nbsp;yum&amp;nbsp;install&amp;nbsp;mysql-server&lt;/pre&gt;&lt;/div&gt;&lt;div class=&quot;dpu8C _2kCxD &quot; style=&quot;max-width: 100%; overflow-x: visible; font-size: 18px; line-height: 30px; color: rgb(34, 34, 34); margin-top: 24px; font-family: arial; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;p style=&quot;overflow-y: auto; max-width: 100%; line-height: 30px; margin-top: 0px !important; margin-bottom: 0px !important; padding: 0px !important;&quot;&gt;&lt;span style=&quot;max-width: 100%; color: #24292F; --tt-darkmode-color: #24292F;&quot;&gt;对于Ubuntu/Debian系统：&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;pre style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; color: rgb(34, 34, 34); font-size: 18px; overflow-y: auto; max-width: 100%;&quot;&gt;sudo&amp;nbsp;apt-get&amp;nbsp;install&amp;nbsp;mysql-server&lt;/pre&gt;&lt;div class=&quot;dpu8C _2kCxD &quot; style=&quot;max-width: 100%; overflow-x: visible; font-size: 18px; line-height: 30px; color: rgb(34, 34, 34); margin-top: 24px; font-family: arial; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;p style=&quot;overflow-y: auto; max-width: 100%; line-height: 30px; margin-top: 0px !important; margin-bottom: 0px !important; padding: 0px !important;&quot;&gt;&lt;span style=&quot;max-width: 100%; color: #24292F; --tt-darkmode-color: #24292F;&quot;&gt;3、配置MySQL： 安装完毕后，需要对MySQL进行一些基本的配置。打开MySQL配置文件（一般位于/etc/mysql/mysql.conf.d/mysqld.cnf）并进行以下更改：&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;dpu8C _2kCxD &quot; style=&quot;max-width: 100%; overflow-x: visible; font-size: 18px; line-height: 30px; color: rgb(34, 34, 34); margin-top: 24px; font-family: arial; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;ul class=&quot; list-paddingleft-2&quot; style=&quot;list-style-type: none;&quot;&gt;&lt;li&gt;&lt;p style=&quot;max-width: 100%; line-height: 30px; margin-top: 0px !important; margin-bottom: 0px !important; padding: 0px !important;&quot;&gt;&lt;span style=&quot;max-width: 100%; color: #24292F; --tt-darkmode-color: #24292F;&quot;&gt;绑定IP地址：如果您只希望MySQL只能通过本地连接访问，请将绑定地址设置为127.0.0.1。如果您希望通过网络连接到MySQL，请将绑定地址设置为0.0.0.0。&lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p style=&quot;max-width: 100%; line-height: 30px; margin-top: 0px !important; margin-bottom: 0px !important; padding: 0px !important;&quot;&gt;&lt;span style=&quot;max-width: 100%; color: #24292F; --tt-darkmode-color: #24292F;&quot;&gt;端口配置：默认情况下，MySQL使用3306端口，如果您需要更改，请在配置文件中相应位置修改。&lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p style=&quot;max-width: 100%; line-height: 30px; margin-top: 0px !important; margin-bottom: 0px !important; padding: 0px !important;&quot;&gt;&lt;span style=&quot;max-width: 100%; color: #24292F; --tt-darkmode-color: #24292F;&quot;&gt;字符集配置：可以根据需要设置服务器的默认字符集和排序规则。&lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;div class=&quot;dpu8C _2kCxD &quot; style=&quot;max-width: 100%; overflow-x: visible; font-size: 18px; line-height: 30px; color: rgb(34, 34, 34); margin-top: 24px; font-family: arial; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;p style=&quot;overflow-y: auto; max-width: 100%; line-height: 30px; margin-top: 0px !important; margin-bottom: 0px !important; padding: 0px !important;&quot;&gt;&lt;span style=&quot;max-width: 100%; color: #24292F; --tt-darkmode-color: #24292F;&quot;&gt;保存并关闭配置文件后，重启MySQL服务以使更改生效： 对于CentOS/RHEL系统：&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;dpu8C _2kCxD &quot; style=&quot;max-width: 100%; overflow-x: visible; font-size: 18px; line-height: 30px; color: rgb(34, 34, 34); margin-top: 24px; font-family: arial; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;pre style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; overflow-y: auto; max-width: 100%;&quot;&gt;sudo&amp;nbsp;systemctl&amp;nbsp;restart&amp;nbsp;mysqld&lt;/pre&gt;&lt;/div&gt;&lt;div class=&quot;dpu8C _2kCxD &quot; style=&quot;max-width: 100%; overflow-x: visible; font-size: 18px; line-height: 30px; color: rgb(34, 34, 34); margin-top: 24px; font-family: arial; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;p style=&quot;overflow-y: auto; max-width: 100%; line-height: 30px; margin-top: 0px !important; margin-bottom: 0px !important; padding: 0px !important;&quot;&gt;&lt;span style=&quot;max-width: 100%; color: #24292F; --tt-darkmode-color: #24292F;&quot;&gt;对于Ubuntu/Debian系统：&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;dpu8C _2kCxD &quot; style=&quot;max-width: 100%; overflow-x: visible; font-size: 18px; line-height: 30px; color: rgb(34, 34, 34); margin-top: 24px; font-family: arial; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;pre style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; overflow-y: auto; max-width: 100%;&quot;&gt;sudo&amp;nbsp;service&amp;nbsp;mysql&amp;nbsp;restart&lt;/pre&gt;&lt;/div&gt;&lt;br/&gt;&lt;div class=&quot;dpu8C _2kCxD &quot; style=&quot;max-width: 100%; overflow-x: visible; font-size: 18px; line-height: 30px; color: rgb(34, 34, 34); margin-top: 28px; font-family: arial; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;p style=&quot;overflow-y: auto; max-width: 100%; line-height: 30px; margin-top: 0px !important; margin-bottom: 0px !important; padding: 0px !important;&quot;&gt;&lt;span style=&quot;max-width: 100%; color: #24292F; --tt-darkmode-color: #24292F;&quot;&gt;4、设置MySQL root密码： 在第一次安装MySQL时，root用户没有密码。为了保护数据库的安全，必须设置一个root密码。使用以下命令登录到MySQL控制台：&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;dpu8C _2kCxD &quot; style=&quot;max-width: 100%; overflow-x: visible; font-size: 18px; line-height: 30px; color: rgb(34, 34, 34); margin-top: 24px; font-family: arial; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;pre style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; overflow-y: auto; max-width: 100%;&quot;&gt;mysql&amp;nbsp;-u&amp;nbsp;root&lt;/pre&gt;&lt;/div&gt;&lt;div class=&quot;dpu8C _2kCxD &quot; style=&quot;max-width: 100%; overflow-x: visible; font-size: 18px; line-height: 30px; color: rgb(34, 34, 34); margin-top: 24px; font-family: arial; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;p style=&quot;overflow-y: auto; max-width: 100%; line-height: 30px; margin-top: 0px !important; margin-bottom: 0px !important; padding: 0px !important;&quot;&gt;&lt;span style=&quot;max-width: 100%; color: #24292F; --tt-darkmode-color: #24292F;&quot;&gt;然后，运行以下SQL语句来设置密码：&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;dpu8C _2kCxD &quot; style=&quot;max-width: 100%; overflow-x: visible; font-size: 18px; line-height: 30px; color: rgb(34, 34, 34); margin-top: 24px; font-family: arial; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;pre class=&quot;code aardio javascript&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; overflow: auto; max-width: 100%; box-shadow: rgba(216, 216, 216, 0.5) 0px 0px 0px 1px inset; border-radius: 3px; background-color: rgb(255, 255, 255); color: rgb(0, 0, 0); word-break: break-all;&quot;&gt;ALTER&amp;nbsp;USER&amp;nbsp;&amp;#39;root&amp;#39;@&amp;#39;localhost&amp;#39;&amp;nbsp;IDENTIFIED&amp;nbsp;BY&amp;nbsp;&amp;#39;your_new_password&amp;#39;;&lt;/pre&gt;&lt;/div&gt;&lt;div class=&quot;dpu8C _2kCxD &quot; style=&quot;max-width: 100%; overflow-x: visible; font-size: 18px; line-height: 30px; color: rgb(34, 34, 34); margin-top: 24px; font-family: arial; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;p style=&quot;overflow-y: auto; max-width: 100%; line-height: 30px; margin-top: 0px !important; margin-bottom: 0px !important; padding: 0px !important;&quot;&gt;&lt;span style=&quot;max-width: 100%; color: #24292F; --tt-darkmode-color: #24292F;&quot;&gt;将your_new_password替换为您要设置的密码。设置完成后，使用以下命令退出MySQL控制台：&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;dpu8C _2kCxD &quot; style=&quot;max-width: 100%; overflow-x: visible; font-size: 18px; line-height: 30px; color: rgb(34, 34, 34); margin-top: 24px; font-family: arial; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;pre style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; overflow-y: auto; max-width: 100%;&quot;&gt;quit&lt;/pre&gt;&lt;/div&gt;&lt;div class=&quot;dpu8C _2kCxD &quot; style=&quot;max-width: 100%; overflow-x: visible; font-size: 18px; line-height: 30px; color: rgb(34, 34, 34); margin-top: 24px; font-family: arial; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;p style=&quot;overflow-y: auto; max-width: 100%; line-height: 30px; margin-top: 0px !important; margin-bottom: 0px !important; padding: 0px !important;&quot;&gt;&lt;span style=&quot;max-width: 100%; color: #24292F; --tt-darkmode-color: #24292F;&quot;&gt;5、测试MySQL连接： 使用以下命令来测试MySQL服务器的连接：&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;dpu8C _2kCxD &quot; style=&quot;max-width: 100%; overflow-x: visible; font-size: 18px; line-height: 30px; color: rgb(34, 34, 34); margin-top: 24px; font-family: arial; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;pre style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; overflow-y: auto; max-width: 100%;&quot;&gt;mysql&amp;nbsp;-u&amp;nbsp;root&amp;nbsp;-p&lt;/pre&gt;&lt;/div&gt;&lt;div class=&quot;dpu8C _2kCxD &quot; style=&quot;max-width: 100%; overflow-x: visible; font-size: 18px; line-height: 30px; color: rgb(34, 34, 34); margin-top: 24px; font-family: arial; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;p style=&quot;overflow-y: auto; max-width: 100%; line-height: 30px; margin-top: 0px !important; margin-bottom: 0px !important; padding: 0px !important;&quot;&gt;&lt;span style=&quot;max-width: 100%; color: #24292F; --tt-darkmode-color: #24292F;&quot;&gt;系统会提示您输入密码，并且显示MySQL的命令行界面。如果成功进入MySQL，则表示连接成功。&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;dpu8C _2kCxD &quot; style=&quot;max-width: 100%; overflow-x: visible; font-size: 18px; line-height: 30px; color: rgb(34, 34, 34); margin-top: 24px; font-family: arial; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;p style=&quot;overflow-y: auto; max-width: 100%; line-height: 30px; margin-top: 0px !important; margin-bottom: 0px !important; padding: 0px !important;&quot;&gt;&lt;span style=&quot;max-width: 100%; color: #24292F; --tt-darkmode-color: #24292F;&quot;&gt;6、创建和管理数据库： 通过MySQL命令行或MySQL图形化工具（如phpMyAdmin）可以创建和管理MySQL数据库。以下是一些常用的命令来创建和管理数据库：&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;dpu8C _2kCxD &quot; style=&quot;max-width: 100%; overflow-x: visible; font-size: 18px; line-height: 30px; color: rgb(34, 34, 34); margin-top: 24px; font-family: arial; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;ul class=&quot; list-paddingleft-2&quot; style=&quot;list-style-type: none;&quot;&gt;&lt;li&gt;&lt;p style=&quot;max-width: 100%; line-height: 30px; margin-top: 0px !important; margin-bottom: 0px !important; padding: 0px !important;&quot;&gt;&lt;span style=&quot;max-width: 100%; color: #24292F; --tt-darkmode-color: #24292F;&quot;&gt;创建数据库：&lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;div class=&quot;dpu8C _2kCxD &quot; style=&quot;max-width: 100%; overflow-x: visible; font-size: 18px; line-height: 30px; color: rgb(34, 34, 34); margin-top: 24px; font-family: arial; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;pre style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; overflow-y: auto; max-width: 100%;&quot;&gt;CREATE&amp;nbsp;DATABASE&amp;nbsp;your_database_name;&lt;/pre&gt;&lt;/div&gt;&lt;div class=&quot;dpu8C _2kCxD &quot; style=&quot;max-width: 100%; overflow-x: visible; font-size: 18px; line-height: 30px; color: rgb(34, 34, 34); margin-top: 24px; font-family: arial; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;p style=&quot;overflow-y: auto; max-width: 100%; line-height: 30px; margin-top: 0px !important; margin-bottom: 0px !important; padding: 0px !important;&quot;&gt;&lt;span style=&quot;max-width: 100%; color: #24292F; --tt-darkmode-color: #24292F;&quot;&gt;将your_database_name替换为您想要创建的数据库名称。&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;dpu8C _2kCxD &quot; style=&quot;max-width: 100%; overflow-x: visible; font-size: 18px; line-height: 30px; color: rgb(34, 34, 34); margin-top: 24px; font-family: arial; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;ul class=&quot; list-paddingleft-2&quot; style=&quot;list-style-type: none;&quot;&gt;&lt;li&gt;&lt;p style=&quot;max-width: 100%; line-height: 30px; margin-top: 0px !important; margin-bottom: 0px !important; padding: 0px !important;&quot;&gt;&lt;span style=&quot;max-width: 100%; color: #24292F; --tt-darkmode-color: #24292F;&quot;&gt;创建用户并授权：&lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;div class=&quot;dpu8C _2kCxD &quot; style=&quot;max-width: 100%; overflow-x: visible; font-size: 18px; line-height: 30px; color: rgb(34, 34, 34); margin-top: 24px; font-family: arial; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;pre class=&quot;code aardio javascript&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; overflow: auto; max-width: 100%; box-shadow: rgba(216, 216, 216, 0.5) 0px 0px 0px 1px inset; border-radius: 3px; background-color: rgb(255, 255, 255); color: rgb(0, 0, 0); word-break: break-all;&quot;&gt;&lt;code style=&quot;max-width: 100%;&quot;&gt;&lt;span style=&quot;max-width: 100%;&quot;&gt;CREATE USER &lt;/span&gt;&lt;span style=&quot;max-width: 100%; color: #800000;&quot;&gt;&amp;#39;your_username&amp;#39;&lt;/span&gt;&lt;span style=&quot;max-width: 100%;&quot;&gt;@&lt;/span&gt;&lt;span style=&quot;max-width: 100%; color: #800000;&quot;&gt;&amp;#39;localhost&amp;#39;&lt;/span&gt;&lt;span style=&quot;max-width: 100%;&quot;&gt; IDENTIFIED BY &lt;/span&gt;&lt;span style=&quot;max-width: 100%; color: #800000;&quot;&gt;&amp;#39;your_password&amp;#39;&lt;/span&gt;&lt;span style=&quot;max-width: 100%;&quot;&gt;;&lt;/span&gt;&lt;br data-filtered=&quot;filtered&quot; style=&quot;display: block; max-width: 100%;&quot;/&gt;&lt;span style=&quot;max-width: 100%;&quot;&gt;GRANT ALL PRIVILEGES ON your_database_name.* TO &lt;/span&gt;&lt;span style=&quot;max-width: 100%; color: #800000;&quot;&gt;&amp;#39;your_username&amp;#39;&lt;/span&gt;&lt;span style=&quot;max-width: 100%;&quot;&gt;@&lt;/span&gt;&lt;span style=&quot;max-width: 100%; color: #800000;&quot;&gt;&amp;#39;localhost&amp;#39;&lt;/span&gt;&lt;span style=&quot;max-width: 100%;&quot;&gt;;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;div class=&quot;dpu8C _2kCxD &quot; style=&quot;max-width: 100%; overflow-x: visible; font-size: 18px; line-height: 30px; color: rgb(34, 34, 34); margin-top: 24px; font-family: arial; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;p style=&quot;overflow-y: auto; max-width: 100%; line-height: 30px; margin-top: 0px !important; margin-bottom: 0px !important; padding: 0px !important;&quot;&gt;&lt;span style=&quot;max-width: 100%; color: #24292F; --tt-darkmode-color: #24292F;&quot;&gt;将your_username和your_password替换为所需的用户名和密码，your_database_name是您要授权的数据库名称。&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;dpu8C _2kCxD &quot; style=&quot;max-width: 100%; overflow-x: visible; font-size: 18px; line-height: 30px; color: rgb(34, 34, 34); margin-top: 24px; font-family: arial; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;ul class=&quot; list-paddingleft-2&quot; style=&quot;list-style-type: none;&quot;&gt;&lt;li&gt;&lt;p style=&quot;max-width: 100%; line-height: 30px; margin-top: 0px !important; margin-bottom: 0px !important; padding: 0px !important;&quot;&gt;&lt;span style=&quot;max-width: 100%; color: #24292F; --tt-darkmode-color: #24292F;&quot;&gt;导入和导出数据库：&lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;div class=&quot;dpu8C _2kCxD &quot; style=&quot;max-width: 100%; overflow-x: visible; font-size: 18px; line-height: 30px; color: rgb(34, 34, 34); margin-top: 24px; font-family: arial; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;pre class=&quot;code aardio javascript&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; overflow: auto; max-width: 100%; box-shadow: rgba(216, 216, 216, 0.5) 0px 0px 0px 1px inset; border-radius: 3px; background-color: rgb(255, 255, 255); color: rgb(0, 0, 0); word-break: break-all;&quot;&gt;mysql&amp;nbsp;-u&amp;nbsp;username&amp;nbsp;-p&amp;nbsp;your_database_name&amp;nbsp;&amp;lt;&amp;nbsp;your_file.sql&lt;/pre&gt;&lt;/div&gt;&lt;div class=&quot;dpu8C _2kCxD &quot; style=&quot;max-width: 100%; overflow-x: visible; font-size: 18px; line-height: 30px; color: rgb(34, 34, 34); margin-top: 24px; font-family: arial; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;p style=&quot;overflow-y: auto; max-width: 100%; line-height: 30px; margin-top: 0px !important; margin-bottom: 0px !important; padding: 0px !important;&quot;&gt;&lt;span style=&quot;max-width: 100%; color: #24292F; --tt-darkmode-color: #24292F;&quot;&gt;将username替换为您的MySQL用户名，your_database_name是要导入或导出的数据库名称，your_file.sql是要导入或导出的SQL文件名。&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Thu, 30 Nov 2023 15:26:53 +0800</pubDate></item><item><title>用群晖自动备份电脑上的工作文件</title><link>https://hxser.com/post/42.html</link><description>&lt;p itemprop=&quot;description&quot; style=&quot;outline: 0px; margin-top: 0px; margin-bottom: 20px; padding: 0px; font-size: 16px; line-height: 1.8; word-break: break-all; overflow-wrap: break-word; color: rgb(51, 51, 51); font-family: arial, sans-serif; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;登录群晖DSM，在群晖的套件中心里安装【Synology Drive】这个套件，启动它：&lt;/p&gt;&lt;p itemprop=&quot;description&quot; style=&quot;outline: 0px; margin-top: 0px; margin-bottom: 20px; padding: 0px; font-size: 16px; line-height: 1.8; word-break: break-all; overflow-wrap: break-word; color: rgb(51, 51, 51); font-family: arial, sans-serif; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;a href=&quot;https://post.smzdm.com/p/az3k67mr/pic_3/&quot; target=&quot;_blank&quot; style=&quot;outline: 0px; text-decoration-line: none; cursor: pointer;&quot;&gt;&lt;img alt=&quot;用群晖自动备份电脑上的工作文件，超简单&quot; src=&quot;https://hxser.com/zb_users/upload/2023/09/20230927113225169578554580887.jpg&quot; title=&quot;&quot; style=&quot;outline: 0px; border: 0px none; font-size: 0px; vertical-align: middle; max-width: 682px; display: block; margin: 0px auto 20px; cursor: pointer;&quot;/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p itemprop=&quot;description&quot; style=&quot;outline: 0px; margin-top: 0px; margin-bottom: 20px; padding: 0px; font-size: 16px; line-height: 1.8; word-break: break-all; overflow-wrap: break-word; color: rgb(51, 51, 51); font-family: arial, sans-serif; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;三、在Drive里点击【我的文件】、点击【+】图标，再点击【文件夹】，给要备份的工作文件单独创建一个文件夹，方便进行管理：&lt;/p&gt;&lt;p itemprop=&quot;description&quot; style=&quot;outline: 0px; margin-top: 0px; margin-bottom: 20px; padding: 0px; font-size: 16px; line-height: 1.8; word-break: break-all; overflow-wrap: break-word; color: rgb(51, 51, 51); font-family: arial, sans-serif; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;a href=&quot;https://post.smzdm.com/p/az3k67mr/pic_4/&quot; target=&quot;_blank&quot; style=&quot;outline: 0px; text-decoration-line: none; cursor: pointer;&quot;&gt;&lt;img alt=&quot;用群晖自动备份电脑上的工作文件，超简单&quot; src=&quot;https://hxser.com/zb_users/upload/2023/09/20230927113225169578554563072.jpg&quot; title=&quot;&quot; style=&quot;outline: 0px; border: 0px none; font-size: 0px; vertical-align: middle; max-width: 682px; display: block; margin: 0px auto 20px; cursor: pointer;&quot;/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p itemprop=&quot;description&quot; style=&quot;outline: 0px; margin-top: 0px; margin-bottom: 20px; padding: 0px; font-size: 16px; line-height: 1.8; word-break: break-all; overflow-wrap: break-word; color: rgb(51, 51, 51); font-family: arial, sans-serif; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;四、输入文件夹名称，然后按确定。文件夹名称方便记忆就行，比如电脑多的话可以电脑名进行命名，也可以用类型进行命名，比如“图片备份”，“视频备份”：&lt;/p&gt;&lt;p itemprop=&quot;description&quot; style=&quot;outline: 0px; margin-top: 0px; margin-bottom: 20px; padding: 0px; font-size: 16px; line-height: 1.8; word-break: break-all; overflow-wrap: break-word; color: rgb(51, 51, 51); font-family: arial, sans-serif; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;a href=&quot;https://post.smzdm.com/p/az3k67mr/pic_5/&quot; target=&quot;_blank&quot; style=&quot;outline: 0px; text-decoration-line: none; cursor: pointer;&quot;&gt;&lt;img alt=&quot;用群晖自动备份电脑上的工作文件，超简单&quot; src=&quot;https://hxser.com/zb_users/upload/2023/09/20230927113226169578554678540.jpg&quot; title=&quot;&quot; style=&quot;outline: 0px; border: 0px none; font-size: 0px; vertical-align: middle; max-width: 682px; display: block; margin: 0px auto 20px; cursor: pointer;&quot;/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p itemprop=&quot;description&quot; style=&quot;outline: 0px; margin-top: 0px; margin-bottom: 20px; padding: 0px; font-size: 16px; line-height: 1.8; word-break: break-all; overflow-wrap: break-word; color: rgb(51, 51, 51); font-family: arial, sans-serif; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;五、点击Dirve左下角用户头像图标，再点击【客户端】，点击【下载客户端】，将客户端安装到电脑上，也可以通过群晖官网等其他途径下载Drive客户端：&lt;/p&gt;&lt;p itemprop=&quot;description&quot; style=&quot;outline: 0px; margin-top: 0px; margin-bottom: 20px; padding: 0px; font-size: 16px; line-height: 1.8; word-break: break-all; overflow-wrap: break-word; color: rgb(51, 51, 51); font-family: arial, sans-serif; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;a href=&quot;https://post.smzdm.com/p/az3k67mr/pic_6/&quot; target=&quot;_blank&quot; style=&quot;outline: 0px; text-decoration-line: none; cursor: pointer;&quot;&gt;&lt;img alt=&quot;用群晖自动备份电脑上的工作文件，超简单&quot; src=&quot;https://hxser.com/zb_users/upload/2023/09/20230927113226169578554653738.jpg&quot; title=&quot;&quot; style=&quot;outline: 0px; border: 0px none; font-size: 0px; vertical-align: middle; max-width: 682px; display: block; margin: 0px auto 20px; cursor: pointer;&quot;/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p itemprop=&quot;description&quot; style=&quot;outline: 0px; margin-top: 0px; margin-bottom: 20px; padding: 0px; font-size: 16px; line-height: 1.8; word-break: break-all; overflow-wrap: break-word; color: rgb(51, 51, 51); font-family: arial, sans-serif; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;点击PC版，之后浏览器会下载适合当前系统的客户端，下载完成后一路下一步将Drive客户端安装好：&lt;/p&gt;&lt;p itemprop=&quot;description&quot; style=&quot;outline: 0px; margin-top: 0px; margin-bottom: 20px; padding: 0px; font-size: 16px; line-height: 1.8; word-break: break-all; overflow-wrap: break-word; color: rgb(51, 51, 51); font-family: arial, sans-serif; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;a href=&quot;https://post.smzdm.com/p/az3k67mr/pic_7/&quot; target=&quot;_blank&quot; style=&quot;outline: 0px; text-decoration-line: none; cursor: pointer;&quot;&gt;&lt;img alt=&quot;用群晖自动备份电脑上的工作文件，超简单&quot; src=&quot;https://hxser.com/zb_users/upload/2023/09/20230927113226169578554693268.jpg&quot; title=&quot;&quot; style=&quot;outline: 0px; border: 0px none; font-size: 0px; vertical-align: middle; max-width: 682px; display: block; margin: 0px auto 20px; cursor: pointer;&quot;/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p itemprop=&quot;description&quot; style=&quot;outline: 0px; margin-top: 0px; margin-bottom: 20px; padding: 0px; font-size: 16px; line-height: 1.8; word-break: break-all; overflow-wrap: break-word; color: rgb(51, 51, 51); font-family: arial, sans-serif; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;六、运行Drive客户端，界面如图，点击【立即开始】。苹果Mac OS客户端界面与Windows客户端是完全一样的，步骤也完全一样，这里就不分别介绍了：&lt;/p&gt;&lt;p itemprop=&quot;description&quot; style=&quot;outline: 0px; margin-top: 0px; margin-bottom: 20px; padding: 0px; font-size: 16px; line-height: 1.8; word-break: break-all; overflow-wrap: break-word; color: rgb(51, 51, 51); font-family: arial, sans-serif; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;a href=&quot;https://post.smzdm.com/p/az3k67mr/pic_8/&quot; target=&quot;_blank&quot; style=&quot;outline: 0px; text-decoration-line: none; cursor: pointer;&quot;&gt;&lt;img alt=&quot;用群晖自动备份电脑上的工作文件，超简单&quot; src=&quot;https://hxser.com/zb_users/upload/2023/09/20230927113226169578554639069.jpg&quot; title=&quot;&quot; style=&quot;outline: 0px; border: 0px none; font-size: 0px; vertical-align: middle; max-width: 682px; display: block; margin: 0px auto 20px; cursor: pointer;&quot;/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p itemprop=&quot;description&quot; style=&quot;outline: 0px; margin-top: 0px; margin-bottom: 20px; padding: 0px; font-size: 16px; line-height: 1.8; word-break: break-all; overflow-wrap: break-word; color: rgb(51, 51, 51); font-family: arial, sans-serif; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;七、选择【备份任务】。我们这里介绍的是备份工作文件，所以要选备份。有必要的话选同步也可以，备份和同步的区别是备份是单向的，从电脑上备份文件到NAS里；而同步是双向的，多台电脑开启同步的话可以让所有电脑里某个文件夹或者硬盘的内容始终保持一致：&lt;/p&gt;&lt;p itemprop=&quot;description&quot; style=&quot;outline: 0px; margin-top: 0px; margin-bottom: 20px; padding: 0px; font-size: 16px; line-height: 1.8; word-break: break-all; overflow-wrap: break-word; color: rgb(51, 51, 51); font-family: arial, sans-serif; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;a href=&quot;https://post.smzdm.com/p/az3k67mr/pic_9/&quot; target=&quot;_blank&quot; style=&quot;outline: 0px; text-decoration-line: none; cursor: pointer;&quot;&gt;&lt;img alt=&quot;用群晖自动备份电脑上的工作文件，超简单&quot; src=&quot;https://hxser.com/zb_users/upload/2023/09/20230927113226169578554690665.jpg&quot; title=&quot;&quot; style=&quot;outline: 0px; border: 0px none; font-size: 0px; vertical-align: middle; max-width: 682px; display: block; margin: 0px auto 20px; cursor: pointer;&quot;/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p itemprop=&quot;description&quot; style=&quot;outline: 0px; margin-top: 0px; margin-bottom: 20px; padding: 0px; font-size: 16px; line-height: 1.8; word-break: break-all; overflow-wrap: break-word; color: rgb(51, 51, 51); font-family: arial, sans-serif; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;八、输入群晖NAS的IP地址，用户名以及密码。也可以点击放大镜图标直接搜索局域网里的NAS，自动填写。如果需要在外网使用，建议输入QuickConnect ID:&lt;/p&gt;&lt;p itemprop=&quot;description&quot; style=&quot;outline: 0px; margin-top: 0px; margin-bottom: 20px; padding: 0px; font-size: 16px; line-height: 1.8; word-break: break-all; overflow-wrap: break-word; color: rgb(51, 51, 51); font-family: arial, sans-serif; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;a href=&quot;https://post.smzdm.com/p/az3k67mr/pic_10/&quot; target=&quot;_blank&quot; style=&quot;outline: 0px; text-decoration-line: none; cursor: pointer;&quot;&gt;&lt;img alt=&quot;用群晖自动备份电脑上的工作文件，超简单&quot; src=&quot;https://hxser.com/zb_users/upload/2023/09/20230927113226169578554691822.jpg&quot; title=&quot;&quot; style=&quot;outline: 0px; border: 0px none; font-size: 0px; vertical-align: middle; max-width: 682px; display: block; margin: 0px auto 20px; cursor: pointer;&quot;/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p itemprop=&quot;description&quot; style=&quot;outline: 0px; margin-top: 0px; margin-bottom: 20px; padding: 0px; font-size: 16px; line-height: 1.8; word-break: break-all; overflow-wrap: break-word; color: rgb(51, 51, 51); font-family: arial, sans-serif; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;九、接下来设置备份来源和目的地。1.在【选择备份来源】框里勾选你电脑上需要备份的工作文件夹，可以多选。2.在【备份目的地】后点击【选择】，选择之前在群晖上创建的备份文件夹：&lt;/p&gt;&lt;p itemprop=&quot;description&quot; style=&quot;outline: 0px; margin-top: 0px; margin-bottom: 20px; padding: 0px; font-size: 16px; line-height: 1.8; word-break: break-all; overflow-wrap: break-word; color: rgb(51, 51, 51); font-family: arial, sans-serif; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;a href=&quot;https://post.smzdm.com/p/az3k67mr/pic_11/&quot; target=&quot;_blank&quot; style=&quot;outline: 0px; text-decoration-line: none; cursor: pointer;&quot;&gt;&lt;img alt=&quot;用群晖自动备份电脑上的工作文件，超简单&quot; src=&quot;https://hxser.com/zb_users/upload/2023/09/20230927113226169578554696673.jpg&quot; title=&quot;&quot; style=&quot;outline: 0px; border: 0px none; font-size: 0px; vertical-align: middle; max-width: 682px; display: block; margin: 0px auto 20px; cursor: pointer;&quot;/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p itemprop=&quot;description&quot; style=&quot;outline: 0px; margin-top: 0px; margin-bottom: 20px; padding: 0px; font-size: 16px; line-height: 1.8; word-break: break-all; overflow-wrap: break-word; color: rgb(51, 51, 51); font-family: arial, sans-serif; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;比如我这里选择的是刚才创建的“Macbook Air备份”文件夹，之后&lt;a class=&quot;seo_link&quot; href=&quot;https://www.smzdm.com/ju/sp4xynp/&quot; target=&quot;_blank&quot; style=&quot;outline: 0px; color: rgb(51, 51, 51); text-decoration-line: none; cursor: pointer; line-height: 20px; border-bottom: 1px dashed rgb(51, 51, 51);&quot;&gt;笔记本&lt;/a&gt;上的所有工作文件都会将备份在这里：&lt;br data-filtered=&quot;filtered&quot; style=&quot;outline: 0px;&quot;/&gt;&lt;/p&gt;&lt;p itemprop=&quot;description&quot; style=&quot;outline: 0px; margin-top: 0px; margin-bottom: 20px; padding: 0px; font-size: 16px; line-height: 1.8; word-break: break-all; overflow-wrap: break-word; color: rgb(51, 51, 51); font-family: arial, sans-serif; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;a href=&quot;https://post.smzdm.com/p/az3k67mr/pic_12/&quot; target=&quot;_blank&quot; style=&quot;outline: 0px; text-decoration-line: none; cursor: pointer;&quot;&gt;&lt;img alt=&quot;用群晖自动备份电脑上的工作文件，超简单&quot; src=&quot;https://hxser.com/zb_users/upload/2023/09/20230927113227169578554750388.jpg&quot; title=&quot;&quot; style=&quot;outline: 0px; border: 0px none; font-size: 0px; vertical-align: middle; max-width: 682px; display: block; margin: 0px auto 20px; cursor: pointer;&quot;/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p itemprop=&quot;description&quot; style=&quot;outline: 0px; margin-top: 0px; margin-bottom: 20px; padding: 0px; font-size: 16px; line-height: 1.8; word-break: break-all; overflow-wrap: break-word; color: rgb(51, 51, 51); font-family: arial, sans-serif; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;十、选择一种备份模式。我平时用的是【连续备份】，只要文件夹里有了新文件就会立即自动备份到NAS里；【手动备份】是需要自己去点击备份，不会自动备份；【计划的备份】适合在外使用流量的用户，比如设置为每天晚上0点才开始备份，正常情况下我还是推荐【连续备份】：&lt;/p&gt;&lt;p itemprop=&quot;description&quot; style=&quot;outline: 0px; margin-top: 0px; margin-bottom: 20px; padding: 0px; font-size: 16px; line-height: 1.8; word-break: break-all; overflow-wrap: break-word; color: rgb(51, 51, 51); font-family: arial, sans-serif; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;a href=&quot;https://post.smzdm.com/p/az3k67mr/pic_13/&quot; target=&quot;_blank&quot; style=&quot;outline: 0px; text-decoration-line: none; cursor: pointer;&quot;&gt;&lt;img alt=&quot;用群晖自动备份电脑上的工作文件，超简单&quot; src=&quot;https://hxser.com/zb_users/upload/2023/09/20230927113227169578554732652.jpg&quot; title=&quot;&quot; style=&quot;outline: 0px; border: 0px none; font-size: 0px; vertical-align: middle; max-width: 682px; display: block; margin: 0px auto 20px; cursor: pointer;&quot;/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p itemprop=&quot;description&quot; style=&quot;outline: 0px; margin-top: 0px; margin-bottom: 20px; padding: 0px; font-size: 16px; line-height: 1.8; word-break: break-all; overflow-wrap: break-word; color: rgb(51, 51, 51); font-family: arial, sans-serif; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;到这里设置工作就完成了，确实很简单是吧：&lt;br data-filtered=&quot;filtered&quot; style=&quot;outline: 0px;&quot;/&gt;&lt;/p&gt;&lt;p itemprop=&quot;description&quot; style=&quot;outline: 0px; margin-top: 0px; margin-bottom: 20px; padding: 0px; font-size: 16px; line-height: 1.8; word-break: break-all; overflow-wrap: break-word; color: rgb(51, 51, 51); font-family: arial, sans-serif; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;a href=&quot;https://post.smzdm.com/p/az3k67mr/pic_14/&quot; target=&quot;_blank&quot; style=&quot;outline: 0px; text-decoration-line: none; cursor: pointer;&quot;&gt;&lt;img alt=&quot;用群晖自动备份电脑上的工作文件，超简单&quot; src=&quot;https://hxser.com/zb_users/upload/2023/09/20230927113227169578554733220.jpg&quot; title=&quot;&quot; style=&quot;outline: 0px; border: 0px none; font-size: 0px; vertical-align: middle; max-width: 682px; display: block; margin: 0px auto 20px; cursor: pointer;&quot;/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p itemprop=&quot;description&quot; style=&quot;outline: 0px; margin-top: 0px; margin-bottom: 20px; padding: 0px; font-size: 16px; line-height: 1.8; word-break: break-all; overflow-wrap: break-word; color: rgb(51, 51, 51); font-family: arial, sans-serif; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;放几个文件到工作文件夹里试试，打开Synology Drive客户端程序，可以看到备份工作立即展开了。备份速度取决于网络速度，千兆局域网里最高可以达到110MB/S左右：&lt;br data-filtered=&quot;filtered&quot; style=&quot;outline: 0px;&quot;/&gt;&lt;/p&gt;&lt;p itemprop=&quot;description&quot; style=&quot;outline: 0px; margin-top: 0px; margin-bottom: 20px; padding: 0px; font-size: 16px; line-height: 1.8; word-break: break-all; overflow-wrap: break-word; color: rgb(51, 51, 51); font-family: arial, sans-serif; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;a href=&quot;https://post.smzdm.com/p/az3k67mr/pic_15/&quot; target=&quot;_blank&quot; style=&quot;outline: 0px; text-decoration-line: none; cursor: pointer;&quot;&gt;&lt;img alt=&quot;用群晖自动备份电脑上的工作文件，超简单&quot; src=&quot;https://hxser.com/zb_users/upload/2023/09/20230927113227169578554777906.jpg&quot; title=&quot;&quot; style=&quot;outline: 0px; border: 0px none; font-size: 0px; vertical-align: middle; max-width: 682px; display: block; margin: 0px auto 20px; cursor: pointer;&quot;/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p itemprop=&quot;description&quot; style=&quot;outline: 0px; margin-top: 0px; margin-bottom: 20px; padding: 0px; font-size: 16px; line-height: 1.8; word-break: break-all; overflow-wrap: break-word; color: rgb(51, 51, 51); font-family: arial, sans-serif; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;Mac OS可以在菜单栏点击Drive图标查看最新备份状态以及消息通知，双击图标可以打开Drive主界面：&lt;br data-filtered=&quot;filtered&quot; style=&quot;outline: 0px;&quot;/&gt;&lt;/p&gt;&lt;p itemprop=&quot;description&quot; style=&quot;outline: 0px; margin-top: 0px; margin-bottom: 20px; padding: 0px; font-size: 16px; line-height: 1.8; word-break: break-all; overflow-wrap: break-word; color: rgb(51, 51, 51); font-family: arial, sans-serif; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;a href=&quot;https://post.smzdm.com/p/az3k67mr/pic_16/&quot; target=&quot;_blank&quot; style=&quot;outline: 0px; text-decoration-line: none; cursor: pointer;&quot;&gt;&lt;img alt=&quot;用群晖自动备份电脑上的工作文件，超简单&quot; src=&quot;https://hxser.com/zb_users/upload/2023/09/20230927113227169578554725596.jpg&quot; title=&quot;&quot; style=&quot;outline: 0px; border: 0px none; font-size: 0px; vertical-align: middle; max-width: 682px; display: block; margin: 0px auto 20px; cursor: pointer;&quot;/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p itemprop=&quot;description&quot; style=&quot;outline: 0px; margin-top: 0px; margin-bottom: 20px; padding: 0px; font-size: 16px; line-height: 1.8; word-break: break-all; overflow-wrap: break-word; color: rgb(51, 51, 51); font-family: arial, sans-serif; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;Windows系统的话在任务栏里：&lt;br data-filtered=&quot;filtered&quot; style=&quot;outline: 0px;&quot;/&gt;&lt;/p&gt;&lt;p itemprop=&quot;description&quot; style=&quot;outline: 0px; margin-top: 0px; margin-bottom: 20px; padding: 0px; font-size: 16px; line-height: 1.8; word-break: break-all; overflow-wrap: break-word; color: rgb(51, 51, 51); font-family: arial, sans-serif; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;a href=&quot;https://post.smzdm.com/p/az3k67mr/pic_17/&quot; target=&quot;_blank&quot; style=&quot;outline: 0px; text-decoration-line: none; cursor: pointer;&quot;&gt;&lt;img alt=&quot;用群晖自动备份电脑上的工作文件，超简单&quot; src=&quot;https://hxser.com/zb_users/upload/2023/09/20230927113228169578554833206.jpg&quot; title=&quot;&quot; style=&quot;outline: 0px; border: 0px none; font-size: 0px; vertical-align: middle; max-width: 682px; display: block; margin: 0px auto 20px; cursor: pointer;&quot;/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p itemprop=&quot;description&quot; style=&quot;outline: 0px; margin-top: 0px; margin-bottom: 20px; padding: 0px; font-size: 16px; line-height: 1.8; word-break: break-all; overflow-wrap: break-word; color: rgb(51, 51, 51); font-family: arial, sans-serif; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;备份好的文件默认在群晖NAS的HomeDrive创建的备份文件夹里，可以通过SMB局域网共享、DSM界面等方式进行访问、管理：&lt;br data-filtered=&quot;filtered&quot; style=&quot;outline: 0px;&quot;/&gt;&lt;/p&gt;&lt;p itemprop=&quot;description&quot; style=&quot;outline: 0px; margin-top: 0px; margin-bottom: 20px; padding: 0px; font-size: 16px; line-height: 1.8; word-break: break-all; overflow-wrap: break-word; color: rgb(51, 51, 51); font-family: arial, sans-serif; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;a href=&quot;https://post.smzdm.com/p/az3k67mr/pic_18/&quot; target=&quot;_blank&quot; style=&quot;outline: 0px; text-decoration-line: none; cursor: pointer;&quot;&gt;&lt;img alt=&quot;用群晖自动备份电脑上的工作文件，超简单&quot; src=&quot;https://hxser.com/zb_users/upload/2023/09/20230927113228169578554848787.jpg&quot; title=&quot;&quot; style=&quot;outline: 0px; border: 0px none; font-size: 0px; vertical-align: middle; max-width: 682px; display: block; margin: 0px auto 20px; cursor: pointer;&quot;/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p itemprop=&quot;description&quot; style=&quot;outline: 0px; margin-top: 0px; margin-bottom: 20px; padding: 0px; font-size: 16px; line-height: 1.8; word-break: break-all; overflow-wrap: break-word; color: rgb(51, 51, 51); font-family: arial, sans-serif; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;MAC电脑的话建议打开NAS备份路径后将文件夹拖到左边收藏栏里，以后一步就可以直接到达备份目的地，方便进行删除等操作，windows同理：&lt;br data-filtered=&quot;filtered&quot; style=&quot;outline: 0px;&quot;/&gt;&lt;/p&gt;&lt;p itemprop=&quot;description&quot; style=&quot;outline: 0px; margin-top: 0px; margin-bottom: 20px; padding: 0px; font-size: 16px; line-height: 1.8; word-break: break-all; overflow-wrap: break-word; color: rgb(51, 51, 51); font-family: arial, sans-serif; white-space: normal; background-color: rgb(255, 255, 255);&quot;&gt;&lt;a href=&quot;https://post.smzdm.com/p/az3k67mr/pic_19/&quot; target=&quot;_blank&quot; style=&quot;outline: 0px; cursor: pointer;&quot;&gt;&lt;img alt=&quot;用群晖自动备份电脑上的工作文件，超简单&quot; src=&quot;https://hxser.com/zb_users/upload/2023/09/20230927113228169578554875362.jpg&quot; title=&quot;&quot; style=&quot;outline: 0px; border: 0px none; font-size: 0px; vertical-align: middle; max-width: 682px; display: block; margin: 0px auto 20px; cursor: pointer;&quot;/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;收集自网络，学习备用&lt;/p&gt;</description><pubDate>Wed, 27 Sep 2023 11:30:17 +0800</pubDate></item></channel></rss>