<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>系统运维</title>
	<atom:link href="http://www.osyunwei.com/feed" rel="self" type="application/rss+xml" />
	<link>https://www.osyunwei.com</link>
	<description>国产化OS/AnolisOS/openEuler/RHEL/CentOS/Rocky Linux/Debian/Ubuntu Linux FreeBSD 服务器教程 &#124; Windows Server 2003/2008/2012/2016/2019/2022/2025服务器教程</description>
	<lastBuildDate>Tue, 14 Apr 2026 10:59:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Linux下安装配置WireGuard</title>
		<link>https://www.osyunwei.com/archives/17086.html</link>
		<comments>https://www.osyunwei.com/archives/17086.html#comments</comments>
		<pubDate>Tue, 14 Apr 2026 10:56:57 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=17086</guid>
		<description><![CDATA[简单介绍： WireGuard 是新一代的虚拟专用网内核模块，它以代码极简、性能极高、配置简单著称。 它被直接集成在 Linux 内核中（5.6 版本以上），因此运行效率非常高，非常适合用于异地组网、内网穿透等使用场景。 操作系统： Rocky Linux 10.1 WireGuard 已经内置于新版内核中，Rocky Linux 10 默认使用的是较新的内核（通常是 6.x 版本），而 WireGuard 在 Linux 内核 5.6 版本之后就已经正式合并到主线内核了。 安装配置： 1、关闭SELINUX vi /etc/selinux/config #SELINUX=enforcing #注释掉 #SELINUXTYPE=targeted #注释掉 SELINUX=disabled #增加 :wq! #保存退出 setenforce 0 #使配置立即生效 getenforce #查看 SELinux 当前运行模式 2、防火墙端口配置 Rocky Linux 10.1默认使用的是firewall作为防火墙 firewall-cmd --list-all #显示所有规则（含服务、端口、区域） systemctl status firewalld #检查 firewalld [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/17086.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/17086.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>配置Nginx 四层（TCP和UDP）流量转发与七层（HTTP和HTTPS）代理支持SSL证书</title>
		<link>https://www.osyunwei.com/archives/17079.html</link>
		<comments>https://www.osyunwei.com/archives/17079.html#comments</comments>
		<pubDate>Wed, 01 Apr 2026 08:11:52 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Nginx]]></category>
		<category><![CDATA[nginx]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=17079</guid>
		<description><![CDATA[需求分析： nginx默认不支持四层转发和七层代理使用SSL证书，必须要开启下面的模块才可以 --with-stream --with-stream_ssl_preread_module --with-stream_ssl_module 操作步骤： 1、在编译安装nginx的时候加上这3个参数 #创建nginx安装目录 mkdir -p /data/server/nginx mkdir -p /data/server/nginx/packages mkdir -p /data/server/nginx/install #安装nginx #解压pcre cd /data/server/nginx/packages tar zxvf pcre2-10.47.tar.gz #解压zlib cd /data/server/nginx/packages tar zxvf zlib-1.3.2.tar.gz #解压openssl cd /data/server/nginx/packages tar zxvf openssl-3.6.1.tar.gz #安装nginx #nginx默认运行账号和组是Linux系统的内置账号和组nobody #创建nginx运行账号和组 cd /data/server/nginx/packages tar zxvf nginx-1.28.3.tar.gz cd nginx-1.28.3 ./configure \ --prefix=/data/server/nginx \ --user=autoops \ --group=autoops \ --without-http_memcached_module [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/17079.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/17079.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu服务器突然断电后无法启动故障解决办法</title>
		<link>https://www.osyunwei.com/archives/17070.html</link>
		<comments>https://www.osyunwei.com/archives/17070.html#comments</comments>
		<pubDate>Tue, 31 Mar 2026 03:27:35 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=17070</guid>
		<description><![CDATA[故障描述： 一台Ubuntu 24.04.03 LTS服务器，突然断电后无法正常启动，卡在如下界面： 原因分析： 断电造成了系统内核文件丢失，导致 /boot 分区的文件系统损坏，GRUB引导配置无法正确指向内核文件 修复过程： 重启系统到内核选择界面 带*的是当前启动的内核，就是这个内核出现故障，无法正常启动， 后面带(recovery mode)的是对应内核的“恢复模式”， 现在我们选择另外一个内核，这个是第三个选项，回车。 现在应该就能正常启动系统了，登录系统之后查看系统内核 uname -r #查看系统当前启动的内核版本 dpkg --list &#124; grep linux-image &#124; grep -v 'linux-image-extra' #列出当前系统中所有内核 rc：已删除但配置文件仍保留（可以安全清理） ii：已安装（正常状态） 当前运行的内核：6.14.0-37-generic 状态为 ii（已安装），说明它是系统当前使用的有效内核。 其他内核版本： 大量 6.11.x 和 6.14.x 版本存在，多数为 rc 状态，说明这些是旧内核，已被卸载但残留配置。 6.17.0-19-generic 状态为 ii，说明它也是当前安装的内核之一，就是它出现故障，导致系统无法启动，需要清理掉 6.8.0-41-generic 状态为 iF，表示该包安装不完整或失败，可能是断电导致的残留问题。 #执行自动清理（清除所有 rc 状态的残留） sudo apt autoremove --purge sudo [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/17070.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/17070.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux下使用DNF命令下载安装包到指定目录</title>
		<link>https://www.osyunwei.com/archives/17063.html</link>
		<comments>https://www.osyunwei.com/archives/17063.html#comments</comments>
		<pubDate>Thu, 19 Mar 2026 17:26:48 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[dnf]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[yum]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=17063</guid>
		<description><![CDATA[需求：内网服务器没有yum源，要离线安装依赖包 解决方法：部署一台相同版本的可以联网的服务器，使用DNF命令下载依赖包，上传到内网服务器离线安装。 具体操作： 我们以RHEL 8/9/10系列操作系统为例 1、安装dnf-utils工具包 默认的 dnf 命令只能做基础的安装、卸载和更新。我们需要安装增强工具包 dnf-utils 才能制作离线安装包 dnf install -y dnf-utils #安装工具包 2、创建目录 #创建临时目录，作为虚拟系统根目录，用来计算依赖关系，不会影响真实的系统 mkdir -p /tmp/fake #创建存储目录，下载好的所有 .rpm 文件都保存在这里 mkdir -p /root/yum-rpm-full-x86 3、下载安装包到指定目录 dnf install --installroot=/tmp/fake --downloadonly --downloaddir=/root/yum-rpm-full-x86 \ wget telnet nmap traceroute ntp rsync lrzsz OpenIPMI ipmitool freeipmi screen ncurses-devel bind-utils libffi-devel libnfnetlink-devel libnl3-devel popt-devel tcpdump wireshark \ libtool [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/17063.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/17063.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>minio从旧集群导出桶再上传到新集群导入桶</title>
		<link>https://www.osyunwei.com/archives/17060.html</link>
		<comments>https://www.osyunwei.com/archives/17060.html#comments</comments>
		<pubDate>Thu, 19 Mar 2026 16:18:57 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[MinIO]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=17060</guid>
		<description><![CDATA[在旧集群上操作 1、配置旧集群别名 旧集群别名：oldminio #进入安装目录 cd /data/server/minio/bin #设置旧集群别名 ./mc alias set oldminio http://192.168.253.8:6901 admin admin123 #检测别名 ./mc alias list 2、下载数据到新建临时目录 创建一个临时目录，比如 /tmp/minio_temp，然后执行递归拷贝 mkdir -p /tmp/minio_temp # 下载整个桶的内容 (保持目录结构) cd /data/server/minio/bin ./mc cp -r oldminio/filemanagementpublic /tmp/minio_temp 3、验证下载完整性 cd /data/server/minio/bin ./mc du oldminio/filemanagementpublic/ du -sh /tmp/minio_temp/filemanagementpublic # 查看本地下载的文件列表 ls -lh /tmp/minio_temp/filemanagementpublic ls -lhR /tmp/minio_temp/filemanagementpublic # 查看源端的文件列表 ./mc ls [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/17060.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/17060.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>本地部署OpenClaw+Qwen大模型+接入飞书机器人</title>
		<link>https://www.osyunwei.com/archives/16985.html</link>
		<comments>https://www.osyunwei.com/archives/16985.html#comments</comments>
		<pubDate>Thu, 05 Mar 2026 07:55:13 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Ai]]></category>
		<category><![CDATA[ai]]></category>
		<category><![CDATA[OpenClaw]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=16985</guid>
		<description><![CDATA[简单说明： OpenClaw 是一款开源的个人 AI 助手框架，核心定位不是“陪聊机器人”，而是一个“能做事的数字员工”。 与传统 AI 只能回答问题不同，OpenClaw 能够连接你的聊天软件（如飞书、微信、Telegram 等），接收自然语言指令，并自主执行具体的电脑操作或网络任务。 1、OpenClaw的核心设计目标就是跨平台兼容，它可以部署在Linux、macOS和Windows系统上。 2、OpenClaw只能操作它所在的那个环境里的文件，并且只能操作工作区目录下的文件。 3、如果要让OpenClaw自主打开处理电脑里的文件等操作，一般建议使用本地部署，执行更方便。 4、OpenClaw 是基于 Node.js 开发的应用程序，安装OpenClaw的电脑需要先安装Node.js环境。 部署环境： 在本地的Linux系统电脑Ubuntu 24.04.4 LTS中安装部署 #安装并开启ssh服务 sudo apt update sudo apt install openssh-server -y sudo systemctl start ssh sudo systemctl enable ssh sudo ufw allow ssh 一、安装Node.js环境 openclaw需要Node.js才能运行，OpenClaw 是基于 Node.js 开发的，必须运行在 Node 环境中，通常需要 v18 (LTS) 或 v20 (LTS) 甚至更高。 [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/16985.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/16985.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>在X86平台物理机上安装OpenWrt软路由系统</title>
		<link>https://www.osyunwei.com/archives/16968.html</link>
		<comments>https://www.osyunwei.com/archives/16968.html#comments</comments>
		<pubDate>Mon, 02 Mar 2026 15:00:04 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Router]]></category>
		<category><![CDATA[OpenWrt]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=16968</guid>
		<description><![CDATA[OpenWrt相关教程： 在ESXI上部署OpenWrt软路由系统 https://www.osyunwei.com/archives/16907.html OpenWrt软路由系统扩容磁盘 https://www.osyunwei.com/archives/16933.html 在OpenWrt软路由系统中设置虚拟专用网拨号 https://www.osyunwei.com/archives/16944.html 对OpenWrt的squashfs格式镜像进行扩容操作 https://www.osyunwei.com/archives/16960.html 简单说明： 在X86平台物理机上安装OpenWrt软路由系统，建议使用ext4格式的镜像文件，安装后可以扩容，当然也能选择提前扩容好的squashfs格式的镜像文件来安装。 下载地址： https://downloads.openwrt.org/releases/ https://downloads.openwrt.org/releases/24.10.5/targets/x86/64/ https://downloads.openwrt.org/releases/24.10.5/targets/x86/64/openwrt-24.10.5-x86-64-generic-ext4-combined.img.gz 所需工具： 1、可以从PE系统启动的u盘 2、写盘软件DiskImage: https://roadkil.net/downloads.php https://roadkil.net/download.php?FileID=409&#038;ProgramID=12 3、OpenWrt镜像文件openwrt-24.10.5-x86-64-generic-ext4-combined.img 把openwrt-24.10.5-x86-64-generic-ext4-combined.img和DiskImage拷贝到u盘根目录下面 我这里有之前扩容好的 squashfs格式的 2GB镜像文件： openwrt-24.10.5-x86-64-generic-squashfs-combined.img 以这个镜像为例来安装 从u盘启动，进PE系统 打开DiskImage_1_6_WinAll.exe写盘工具 切换到Write Image Write Image to：选择要安装OpenWrt的磁盘，一定要选择正确 Source：选择我们下载好的OpenWrt镜像文件 确认无误后，点Start开始写盘操作 再次确认，点是 等待执行完成，然后关闭电脑，拔掉u盘，开机进bios设置刚刚写入OpenWrt镜像的硬盘为第一启动，保存重启 会看到下面的界面，等待启动完成。 这个时候OpenWrt已经安装完成了。 简单设置OpenWrt系统 默认root登录密码为空 默认第一款网卡是lan，默认ip地址是192.168.1.1 我们修改为自己需要的ip地址 vi /etc/config/network config interface 'lan' option device 'br-lan' option proto 'static' [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/16968.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/16968.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>对OpenWrt的squashfs格式镜像进行扩容操作</title>
		<link>https://www.osyunwei.com/archives/16960.html</link>
		<comments>https://www.osyunwei.com/archives/16960.html#comments</comments>
		<pubDate>Mon, 02 Mar 2026 10:30:39 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Router]]></category>
		<category><![CDATA[OpenWrt]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=16960</guid>
		<description><![CDATA[OpenWrt安装镜像有ext4和squashfs两种格式，ext4在安装完成后可以对磁盘进行扩容，squashfs则不能扩容。 但是，我们可以在安装前对squashfs镜像扩容操作，扩容完成之后再安装。 我们需要在Linux系统下操作，我这里用的是AnolisOS-8.10系统 1、下载OpenWRT的gz镜像上传后解压 镜像下载地址： https://downloads.openwrt.org/releases/24.10.5/targets/x86/64/ https://downloads.openwrt.org/releases/24.10.5/targets/x86/64/openwrt-24.10.5-x86-64-generic-squashfs-combined.img.gz #解压 gzip -d openwrt-24.10.5-x86-64-generic-squashfs-combined.img.gz #扩容，镜像文件的末尾追加2GB的空白数据 #用dd命令，2M即一次，增加2M的空间，增加1024次，也就是2G的空间 dd if=/dev/zero bs=2M count=1024 &#62;&#62; openwrt-24.10.5-x86-64-generic-squashfs-combined.img #用parted命令进入img镜像，把刚才增加的空间扩展进去 parted openwrt-24.10.5-x86-64-generic-squashfs-combined.img print #用print查看一下分区，发现有两个区 Number Start End Size Type File system Flags 1 262kB 17.0MB 16.8MB primary ext2 boot 2 17.3MB 126MB 109MB primary #把增加的空间扩容给第二个分区 resizepart 2 100% #完成，退出 quit 再次查看镜像分区大小，现在第二个分区已经显示是2GB了 现在就可以用这个镜像文件来安装了，装好之后磁盘空间就是2GB 至此，对OpenWrt的squashfs格式镜像进行扩容操作完成。 &#160;&#160;&#160;&#160;&#160;» 本文链接：https://www.osyunwei.com/archives/16960.html» [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/16960.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/16960.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>在OpenWrt软路由系统中设置虚拟专用网拨号</title>
		<link>https://www.osyunwei.com/archives/16944.html</link>
		<comments>https://www.osyunwei.com/archives/16944.html#comments</comments>
		<pubDate>Mon, 02 Mar 2026 09:07:04 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Router]]></category>
		<category><![CDATA[OpenWrt]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=16944</guid>
		<description><![CDATA[在OpenWrt软路由系统中设置虚拟专用网拨号，通常是指将OpenWrt路由器配置为‌OpenVPN客户端‌，以连接到远程的OpenVPN服务器（如公司内网或商业VPN服务），从而实现安全的远程访问。 在ESXI上部署OpenWrt软路由系统 https://www.osyunwei.com/archives/16907.html OpenWrt软路由系统扩容磁盘 https://www.osyunwei.com/archives/16933.html 1、安装openvpn程序包 在ssh命令行操作，或者在web控制台安装。 opkg update #更新仓库 opkg install openvpn-openssl #安装 OpenSSL 版本的 OpenVPN opkg install luci-app-openvpn #安装 LuCI 网页管理插件 opkg install ca-bundle #安装 LuCI 网页管理插件 /etc/init.d/rpcd restart #重启 LuCI 服务（让菜单显示出来） 2、导入openvpn配置文件 openvpn配置文件的配置文件一般都是.ovpn后缀结尾的 先需要检查下这个文件，看有没有下面的参数配置，如果没有需要添加 #添加此配置，否则客户端连接后获取不到vpn的网络，强制要求客户端将所有互联网流量重定向到vpn redirect-gateway def1 #在open配置文件里面添加账号密码路径 auth-user-pass /etc/openvpn/userpass 进入到ssh控制台，编辑账号密码文件，添加你的vpn登录账号和密码，上面写账号，下面写密码 vi /etc/openvpn/userpass vpnuser 123456 :wq! #保存退出 chmod 600 /etc/openvpn/userpass #设置只读权限 ls [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/16944.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/16944.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenWrt软路由系统扩容磁盘</title>
		<link>https://www.osyunwei.com/archives/16933.html</link>
		<comments>https://www.osyunwei.com/archives/16933.html#comments</comments>
		<pubDate>Sun, 01 Mar 2026 15:19:15 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Router]]></category>
		<category><![CDATA[OpenWrt]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=16933</guid>
		<description><![CDATA[在ESXI上部署OpenWrt软路由系统 https://www.osyunwei.com/archives/16907.html 前提条件：使用ext4文件系统的OpenWrt支持安装后扩容磁盘，如果是squashfs文件系统则不支持安装后扩容 扩容操作步骤，如果是虚拟机安装的OpenWrt系统，先关机给虚拟机磁盘镜像扩容，然后启动虚拟机。 ssh登录到OpenWrt终端进行操作 1、下载扩容脚本 在终端中输入命令下载所需脚本并重命名为expand-root.sh wget -U "" -O expand-root.sh "https://openwrt.org/_export/code/docs/guide-user/advanced/expand_root?codeblock=0" 2、运行下载的脚本以生成扩容脚本 . ./expand-root.sh 3、安装扩容工具 opkg update opkg install parted losetup resize2fs 4. 运行扩容命令 sh /etc/uci-defaults/70-rootpt-resize 执行过程中路由器会自动重启，等设备启动完成后扩容成功。 原理： 脚本会把扩容逻辑写入 /etc/uci-defaults/ 脚本成功运行后扩容成功并创建了touch /etc/rootpt-resize这个文件 重启OpenWrt或者再次运行脚本的时候，系统会检测到 /etc/rootpt-resize 已经存在，它便认为“扩容任务已完成”，直接跳过了后续所有操作 如果磁盘空间又不够用了需要扩容，先在虚拟机里面增加磁盘空间，要先关机，再打开，然后删除这2个文件，再重启。 删除第一个文件：告诉系统“分区还没扩好”，触发第一步（parted）。 删除第二个文件：告诉系统“文件系统还没拉伸”，触发第二步（resize2fs）。 rm -f /etc/rootpt-resize rm -f /etc/rootfs-resize reboot #重启系统后会自动扩容 至此，OpenWrt软路由系统扩容磁盘完成。 &#160;&#160;&#160;&#160;&#160;» 本文链接：https://www.osyunwei.com/archives/16933.html» 订阅本站：https://www.osyunwei.com/feed» 转载请注明来源：系统运维 » OpenWrt软路由系统扩容磁盘<p><a rel="bookmark" href="https://www.osyunwei.com/archives/16933.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/16933.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>在ESXI上部署OpenWrt软路由系统</title>
		<link>https://www.osyunwei.com/archives/16907.html</link>
		<comments>https://www.osyunwei.com/archives/16907.html#comments</comments>
		<pubDate>Sun, 01 Mar 2026 09:19:12 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Router]]></category>
		<category><![CDATA[ESXI]]></category>
		<category><![CDATA[OpenWrt]]></category>
		<category><![CDATA[VMware]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=16907</guid>
		<description><![CDATA[1、简单介绍 OpenWrt 是一个基于Linux的开源路由器系统，可以安装在普通PC电脑上，也能安装在虚拟机中，还可以安装在支持OpenWrt系统的硬件路由器上。 软件生态丰富：拥有数千个免费插件，可轻松实现科学上网（OpenVPN, Clash, WireGuard）等。 2、官方网站下载 https://downloads.openwrt.org/releases/ https://downloads.openwrt.org/releases/24.10.5/targets/x86/64/ 我们选择x86/64/格式的镜像 有4种类型的镜像文件： 引导方式：UEFI 还是 Legacy BIOS 启动 文件系统：ext4 还是 squashfs generic-ext4-combined-efi.img.gz generic-ext4-combined.img.gz generic-squashfs-combined-efi.img.gz generic-squashfs-combined.img.gz 一般选择generic-ext4-combined.img.gz镜像就可以。 https://downloads.openwrt.org/releases/24.10.5/targets/x86/64/openwrt-24.10.5-x86-64-generic-ext4-combined.img.gz 注意： .img 文件本身就已经是一个完整的、包含分区表和文件系统的硬盘镜像了。 它不像 Windows 的 .iso 文件那样是一个“安装光盘”，需要你运行安装程序去格式化硬盘、复制文件。 .img 文件就像是已经装好系统并拔下来的硬盘，你只需要把它“插”到虚拟机上即可。 3、转换img固件为ESXi可以识别的镜像 安装转换工具StarWind V2V Converter 下载地址： https://www.starwindsoftware.com/tmplink/starwindconverter.exe 修改镜像名称，把下载好的镜像openwrt-24.10.5-x86-64-generic-ext4-combined.img改名为：openwrt24.img 安装并打开StarWind V2V Converter 选择 local file本地文件 选择刚刚修改过名字的镜像文件 选择转换位置local file 选择格式类型VMDK 选择虚拟机硬盘文件格式类型：这里选择ESXi 选择存储位置 转换 [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/16907.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/16907.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux系统下RustDesk自建服务器教程</title>
		<link>https://www.osyunwei.com/archives/16887.html</link>
		<comments>https://www.osyunwei.com/archives/16887.html#comments</comments>
		<pubDate>Fri, 13 Feb 2026 08:30:13 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=16887</guid>
		<description><![CDATA[简单说明： RustDesk 是一款可以平替 TeamViewer 的开源软件，旨在提供安全便捷的自建方案。 操作系统：AnolisOS-8.10 AnolisOS-8.x安装配置图解教程 https://www.osyunwei.com/archives/14613.html 1、rustdesk下载 1.1rustdesk服务端下载： https://github.com/rustdesk/rustdesk-server/releases/ https://github.com/rustdesk/rustdesk-server/releases/download/1.1.15/rustdesk-server-linux-amd64.zip 1.2rustdes客户端下载： https://github.com/rustdesk/rustdesk https://github.com/rustdesk/rustdesk/releases/tag/1.4.5 1.2.1windows客户端 https://github.com/rustdesk/rustdesk/releases/download/1.4.5/rustdesk-1.4.5-x86_64.msi 1.2.2Android 手机/平板（ARM64 架构） 的安装包 https://github.com/rustdesk/rustdesk/releases/download/1.4.5/rustdesk-1.4.5-aarch64-signed.apk 说明：rustdesk服务端是部署在AnolisOS-8.10服务器上的，rustdes客户端是安装在windows系统和手机上的。 2、在AnolisOS-8.10服务器部署rustdesk服务端 2.1创建安装目录 mkdir -p /data/server/rustdesk-server 上传rustdesk-server-linux-amd64.zip到这个目录下 2.2关闭SELINUX，AnolisOS-8.x默认已经关闭 vi /etc/selinux/config #SELINUX=enforcing #注释掉 #SELINUXTYPE=targeted #注释掉 SELINUX=disabled #增加 :wq! #保存退出 setenforce 0 #使配置立即生效 getenforce #查看 SELinux 当前运行模式 2.3防火墙配置 AnolisOS-8.x默认使用的是firewall作为防火墙 firewall-cmd --list-all #显示所有规则（含服务、端口、区域） systemctl status firewalld [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/16887.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/16887.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rocky Linux 10.1系统安装配置图解教程</title>
		<link>https://www.osyunwei.com/archives/16847.html</link>
		<comments>https://www.osyunwei.com/archives/16847.html#comments</comments>
		<pubDate>Mon, 02 Feb 2026 05:23:17 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Rocky]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=16847</guid>
		<description><![CDATA[简单介绍： Rocky Linux 是一个开源的企业级操作系统，旨在与 Red Hat Enterprise Linux® 100% 完全兼容。Rocky Linux 正在由社区积极开发中。 Rocky Linux官方网站：https://rockylinux.org/ Rocky Linux下载地址：https://rockylinux.org/download 截止目前最新稳定版本为Rocky Linux 10.1，下面介绍Rocky Linux 10.1 的具体安装配置过程 Rocky Linux 10.1系统镜像下载地址： https://download.rockylinux.org/pub/rocky/10/isos/x86_64/Rocky-10.1-x86_64-dvd1.iso 国内镜像源： https://mirrors.ustc.edu.cn/rocky/10.1/isos/x86_64/Rocky-10.1-x86_64-dvd1.iso https://mirror.sjtu.edu.cn/rocky/10.1/isos/x86_64/Rocky-10.1-x86_64-dvd1.iso 一、安装Rocky Linux 最新版本的VMware® Workstation 专业版 25H2虚拟机安装的时候已经支持最新的 Rocky Linux 64位 版本，我们直接选择这个虚拟机模板即可。 配置虚拟机模板，根据提示按照步骤进行设置。 点完成，成功引导系统后，会出现下面的界面 界面说明： Install Rocky Linux 10.1 #安装Rocky Linux 10.1 Test this media &#38; install Rocky [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/16847.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/16847.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>基于源 IP 白名单的 SSH 会话级 sudo 访问控制方案-实现单账号多权限安全隔离</title>
		<link>https://www.osyunwei.com/archives/16828.html</link>
		<comments>https://www.osyunwei.com/archives/16828.html#comments</comments>
		<pubDate>Thu, 22 Jan 2026 10:10:12 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=16828</guid>
		<description><![CDATA[1、场景描述 服务端ip：192.168.21.159 客户端ip：192.168.21.137、192.168.21.204 1.1 在服务端的主机上创建普通账号autoops #登录服务端主机，创建普通账号 useradd -m -s /bin/bash autoops passwd autoops #设置密码 1.2 设置此账号具有sudo权限 #添加普通用户到wheel组，使其具有sudo权限 gpasswd -a autoops wheel #验证wheel组 cat /etc/group &#124;grep wheel id autoops 可以看到autoops用户已经是在wheel组了 #从普通用户autoops登录服务器 执行sudo cp命令验证，已经具有sudo权限 1.3 设置sudo免密权限 #设置sudo免密执行 vi /etc/sudoers #编辑 autoops ALL=(ALL) NOPASSWD: ALL :wq! #保存退出 现在从autoops登录后执行sudo命令已经不需要再输入密码了 2、设置客户端主机 2.1 创建普通账号autoops #登录所有客户端主机，分别创建普通账号 useradd -m -s /bin/bash autoops passwd [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/16828.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/16828.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux下编译安装Nginx</title>
		<link>https://www.osyunwei.com/archives/16822.html</link>
		<comments>https://www.osyunwei.com/archives/16822.html#comments</comments>
		<pubDate>Mon, 19 Jan 2026 09:40:25 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Nginx]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[nginx]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=16822</guid>
		<description><![CDATA[操作系统：Rocky Linux 10.x Rocky Linux 10.x系统安装配置图解教程 https://www.osyunwei.com/archives/15874.html 安装包下载： 1、nginx https://nginx.org/download/nginx-1.28.1.tar.gz 2、zlib https://www.zlib.net/zlib-1.3.1.tar.gz 3、pcre2 https://github.com/PCRE2Project/pcre2/releases/download/pcre2-10.47/pcre2-10.47.tar.gz 4、openssl https://github.com/openssl/openssl/releases/download/openssl-3.5.4/openssl-3.5.4.tar.gz 安装前准备： 1、防火墙配置 Rocky Linux默认使用的是firewall作为防火墙 firewall-cmd --list-all #显示所有规则（含服务、端口、区域） systemctl status firewalld #检查 firewalld 状态 #开放80 443 端口 firewall-cmd --permanent --add-port=80/tcp firewall-cmd --permanent --add-port=443/tcp firewall-cmd --reload #重新加载防火墙配置 2、关闭SELINUX vi /etc/selinux/config #SELINUX=enforcing #注释掉 #SELINUXTYPE=targeted #注释掉 SELINUX=disabled #增加 :wq! #保存退出 setenforce 0 #使配置立即生效 [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/16822.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/16822.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
