<?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>系统运维 &#187; Linux</title>
	<atom:link href="http://www.osyunwei.com/archives/category/linux/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>Wed, 01 Apr 2026 08:27:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<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>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>基于源 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>BCLinux For Euler 21.10安装3节点PanWeiDB数据库集群</title>
		<link>https://www.osyunwei.com/archives/16807.html</link>
		<comments>https://www.osyunwei.com/archives/16807.html#comments</comments>
		<pubDate>Tue, 09 Dec 2025 08:39:27 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=16807</guid>
		<description><![CDATA[简介介绍： PanWeiDB数据库：https://www.panwei.tech/ PanWeiDB是基于openGauss，openGauss基于PostgreSQL 操作系统：BCLinux For Euler 21.10 BCLinux For Euler 21.10安装配置图解教程 https://www.osyunwei.com/archives/13044.html 磐维数据库安装包：PanWeiDB_1.0.0_BCLinuxForEuler21.10_x86.tar.gz ptk安装工具包下载地址： https://docs.mogdb.io/zh/ptk/v1.1/install https://cdn-mogdb.enmotech.com/ptk/latest/ptk_linux_x86_64.tar.gz 主节点ip：10.189.189.184 主机名：panweidb-node01 从节点ip：10.189.189.185 主机名：panweidb-node02 从节点ip：10.189.189.186 主机名：panweidb-node03 准备篇（在3台服务器上都进行操作） 1、关闭selinux sed -i 's/^SELINUX=.*/SELINUX=disabled/' /etc/selinux/config setenforce 0 2、关闭firewall防火墙 vi /etc/yum/pluginconf.d/license-manager.conf enabled=0 #把1修改为0，禁用yum源认证 :wq! #保存退出 systemctl stop firewalld.service systemctl disable firewalld.service systemctl mask firewalld systemctl stop firewalld yum remove firewalld -y #卸载 3、关闭swap交换分区（如果没有swap分区就不需要操作） [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/16807.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/16807.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>使用Nginx实现HTTPS和SSH共用同一个端口访问各自服务</title>
		<link>https://www.osyunwei.com/archives/16800.html</link>
		<comments>https://www.osyunwei.com/archives/16800.html#comments</comments>
		<pubDate>Mon, 08 Dec 2025 09:12:03 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[nginx]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=16800</guid>
		<description><![CDATA[需求： 对外只能开放一个端口，要实现https服务，还要能通过ssh访问Linux服务器 分析： 可以使用Nginx的四层代理（stream 模块） 与 TLS 预读（ssl_preread） 功能 注意：HTTP协议无法通过stream模块的SNI识别，因为stream模块只能识别TLS握手包中的协议信息。 具体操作： Nginx 编译时要包含以下模块才可以： --with-stream --with-stream_ssl_preread_module 验证命令： /data/server/nginx/sbin/nginx -V 2&#62;&#38;1 &#124; grep -o 'with-stream\&#124;with-stream_ssl_preread_module' #有输出即支持 参考资料： Nginx 单端口兼容 HTTP 与 HTTPS：基于 stream 模块与 ssl_preread 的智能分流方案 准备就绪： SSH 服务运行在 22 端口（默认） HTTPS 服务运行在 另一个端口，例如28443 对外只开放9290端口 1、修改nginx配置文件 cp /data/server/nginx/conf/nginx.conf /data/server/nginx/conf/nginx.conf.bak 1.1在nginx主配置文件引入stream模块 mkdir -p /data/server/nginx/conf/stream #创建目录 vi /data/server/nginx/conf/nginx.conf #stream块必须在顶层，和 [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/16800.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/16800.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nginx 单端口兼容 HTTP 与 HTTPS：基于 stream 模块与 ssl_preread 的智能分流方案</title>
		<link>https://www.osyunwei.com/archives/16788.html</link>
		<comments>https://www.osyunwei.com/archives/16788.html#comments</comments>
		<pubDate>Sun, 07 Dec 2025 15:18:53 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[nginx]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=16788</guid>
		<description><![CDATA[需求： 通过一个端口9190可以实现http和https同时访问 例如： http://10.189.189.189:9190/#/public/login https://10.189.189.189:9190/#/public/login 真实的地址是： http协议：http://10.189.189.189:9997/#/public/login https协议：http://10.189.189.189:28443/#/public/login 分析： 1、Nginx 本身无法使用1个端口同时处理 HTTP 和 HTTPS 请求 2、可以通过 stream 模块 + ssl_preread 实现： 监听同一个端口9190，自动识别客户端发来的是 HTTP 还是 HTTPS流量，并分别转发给后端的 HTTP（9997端口） 服务和 HTTPS （28443端口） 服务 3、这样就实现了只用1个端口可以同时访问http和https页面，这不属于“Nginx 在同一端口提供两种协议”，而是通过四层代理智能分流。 4、需要使用新版本的nginx，并启用 --with-stream 和 --with-stream_ssl_preread_module模块 具体操作： 1、检查nginx是否启用--with-stream 和 --with-stream_ssl_preread_module模块 /data/server/nginx/sbin/nginx -V 2&#62;&#38;1 &#124; grep -o 'with-stream\&#124;with-stream_ssl_preread_module' 2、重新编译nginx，添加模块 /data/server/nginx/sbin/nginx -V #查看nginx编译参数，如果未启用，需要添加上面两个模块，重新编译nginx ./configure --prefix=/data/server/nginx --user=www --group=www [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/16788.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/16788.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux系统下nginx服务器添加https自签证书</title>
		<link>https://www.osyunwei.com/archives/16778.html</link>
		<comments>https://www.osyunwei.com/archives/16778.html#comments</comments>
		<pubDate>Thu, 04 Dec 2025 10:54:20 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=16778</guid>
		<description><![CDATA[需求： 给当前的网站添加自签的https证书 http访问：http://10.189.189.189:9997/#/public/login 实现https访问：https://10.189.189.189:28443/#/public/login 目前http使用的是9997端口，https计划使用28443端口，需要提前在防火墙放行该端口。 操作： 登录服务器进行操作 1、创建https证书 确保机器上安装了openssl和openssl-devel yum install openssl openssl-devel #创建证书存放目录 mkdir -p /data/server/nginx/conf/cert/ cd /data/server/nginx/conf/cert/ 1.1创建服务器私钥 openssl genpkey -algorithm RSA -out server.key 1.2编写 SAN 配置文件 vi san.conf [req] default_bits = 2048 prompt = no distinguished_name = dn req_extensions = v3_req [dn] C = CN ST = Beijing L = Beijing O [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/16778.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/16778.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux服务器更换主板后网络不通问题解决办法</title>
		<link>https://www.osyunwei.com/archives/16773.html</link>
		<comments>https://www.osyunwei.com/archives/16773.html#comments</comments>
		<pubDate>Thu, 04 Dec 2025 03:06:50 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=16773</guid>
		<description><![CDATA[遇到问题： Linux服务器主板故障，更换完新主板后，发现服务器上的管理ip不通了，业务ip和存储ip正常。 分析原因： 1、从服务器的业务ip通过ssh登录上去检查 1.1ping同一网段的其它管理ip地址，发现确实不通 1.2使用ip addr命令查看ip地址信息 1: lo: &#60;LOOPBACK,UP,LOWER_UP&#62; mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 inet 127.0.0.1/8 scope host lo valid_lft forever preferred_lft forever inet6 ::1/128 scope host valid_lft forever preferred_lft forever 2: eno1: &#60;BROADCAST,MULTICAST,UP,LOWER_UP&#62; mtu 1500 qdisc mq state UP group default qlen 1000 link/ether [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/16773.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/16773.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux系统下安装JDK 25 LTS最新版本</title>
		<link>https://www.osyunwei.com/archives/16760.html</link>
		<comments>https://www.osyunwei.com/archives/16760.html#comments</comments>
		<pubDate>Mon, 13 Oct 2025 11:02:59 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[java]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=16760</guid>
		<description><![CDATA[说明： 1、JDK 是 Java 语言的软件开发工具包，JDK 是整个 Java 开发的核心，它包括 Java 运行环境、Java 基础类库和 Java 工具。 2、目前JDK有五个长期支持版本(LTS)，分别是：JDK8、JDK11、JDK17、JDK21、JDK25 3、JDK 版本包括 Oracle JDK、OpenJDK、AdoptOpenJDK、Amazon Corretto、阿里 Dragonwell 以及华为毕昇 JDK等，其中Oracle JDK 使用最广泛，版本最全面。 4、OpenJDK 是由 Sun 公司创建的 JDK SE 的开源实现，它采用 GPL 协议，可以免费使用，源码开放。 5、AdoptOpenJDK（adoptium） 是由 Java 社区维护的预建 OpenJDK 二进制发行版本，其它版本都是各厂商基于 OpenJDK，并结合使用场景实现的特定版本。 6、Oracle JDK只发布二进制安装包，而Open JDK只发布源码。 JDK下载地址： 1、Oracle JDK下载 #下载jdk，需要登录之后才能下载 https://www.oracle.com/java/technologies/downloads/#java8 #历史版本下载 https://www.oracle.com/java/technologies/downloads/archive/ 2、Open JDK下载 https://openjdk.java.net http://hg.openjdk.java.net/ https://jdk.java.net/java-se-ri/8-MR4 [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/16760.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/16760.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux系统下安装部署最新版3节点ZooKeeper集群环境</title>
		<link>https://www.osyunwei.com/archives/16748.html</link>
		<comments>https://www.osyunwei.com/archives/16748.html#comments</comments>
		<pubDate>Mon, 13 Oct 2025 10:20:04 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=16748</guid>
		<description><![CDATA[1、ZooKeeper介绍 1.1、ZooKeeper 在 Java 版本 1.8 或更高版本中运行（JDK 8 LTS、JDK 11 LTS、JDK 12 - 不支持 Java 9 和 10），它作为 ZooKeeper 服务器的集合运行，三个 ZooKeeper 服务器是一个整体的最小推荐大小，我们还建议它们在不同的机器上运行。 1.2、ZooKeeper 集群强烈建议使用奇数台机器，例如，在四台机器上，ZooKeeper 只能处理一台机器的故障；如果两台机器发生故障，则其余两台机器不构成多数。但是，如果有五台机器，ZooKeeper 可以处理两台机器的故障。容错集群设置至少需要三台服务器。 1.3、通常三台服务器对于生产安装来说绰绰有余，但为了在维护期间获得最大的可靠性，您可能希望安装五台服务器。 1.4、官方网站： https://zookeeper.apache.org/ 1.5、下载地址： 目前最新版本 https://www.apache.org/dyn/closer.lua/zookeeper/zookeeper-3.9.4/apache-zookeeper-3.9.4-bin.tar.gz 1.6、说明文档： https://zookeeper.apache.org/doc/current/zookeeperAdmin.html 2、部署zookeeper集群，这里使用三台服务器组成集群模式。 操作系统：AnolisOS ip地址：192.168.21.201，192.168.21.202，192.168.21.203 zookeeper默认使用2181端口，集群模式还会用到2888、3888端口，建议zookeeper部署在内网环境中，服务器上关闭防火墙、关闭SELINUX。 分别在三台服务器上操作。 2.1、安装Java ZooKeeper依赖Java才能运行，首先安装Java环境，我们使用Java 25版本 Linux系统下安装Java JDK：https://www.osyunwei.com/archives/16760.html 2.2、安装ZooKeeper mkdir -p /data/server/zookeeper #创建安装目录 mkdir -p /data/server/zookeeper/data #创建数据目录 mkdir -p [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/16748.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/16748.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Python3.9离线安装requests包</title>
		<link>https://www.osyunwei.com/archives/16707.html</link>
		<comments>https://www.osyunwei.com/archives/16707.html#comments</comments>
		<pubDate>Fri, 29 Aug 2025 09:52:47 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=16707</guid>
		<description><![CDATA[简单说明： 服务器上已经安装好了Python3.9 Python官方网站：https://www.python.org/ftp/python/ 需求：给Python3.9离线安装requests扩展 具体操作： 1、下载扩展包 PyPI 是 Python 第三方库的官方仓库，Python扩展包下载地址： https://pypi.org/ https://pypi.tuna.tsinghua.edu.cn/simple/ #国内镜像源 安装requests扩展包，还需要其他几个依赖包 idna certifi charset_normalizer urllib3 requests 依赖包和python的版本要兼容，我们是Python3.9 要用以下版本 idna-3.7-py3-none-any.whl certifi-2025.1.31-py3-none-any.whl charset_normalizer-3.4.0-py3-none-any.whl urllib3-2.2.2-py3-none-any.whl requests-2.32.3-py3-none-any.whl 依次下载这几个依赖包 打开https://pypi.org/ 搜索：idna 点击：idna-Release history选择版本 找到：3.7-Download files 下载idna-3.7-py3-none-any.whl 按照这个步骤把其他的依赖包也下载好。 注意： .whl 和 .tar.gz 是 Python 包的两种主要发布格式，建议使用.whl格式的包 .whl是已经编译好的包，安装速度很快 .whl 是一种包分发格式，它从 Python 2.7 和 3.3+ 开始被支持 python 2.7, 3.3 ~ 3.12 [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/16707.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/16707.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iStoreOS开源免费的路由存储系统安装教程</title>
		<link>https://www.osyunwei.com/archives/16653.html</link>
		<comments>https://www.osyunwei.com/archives/16653.html#comments</comments>
		<pubDate>Mon, 18 Aug 2025 06:47:10 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[iStoreOS]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=16653</guid>
		<description><![CDATA[简单介绍： iStoreOS (opens new window)是一个开源免费的路由兼存储系统，轻松管理网络与存储，享受一致的操作体验，代码完全开源。 iStoreOS 来源于 OpenWRT，重点是做了很多很多的交互简化。但是即使再简化，对于不同的用户级别提供了三套完全不一样的交互 UI。iStoreOS 是基于 OpenWrt 深度优化的开源智能路由系统，兼具强大功能和极致体验。 保留了 OpenWrt 灵活性的同时，简化了交互操作和增强稳定性，让新手也能轻松驾驭。 内置 iStore 软件中心 ，提供海量一键安装应用；支持 Docker 快速部署私人影音库（如 Jellyfin、Emby）、智能家居中枢（如 HomeAssistant）及数据管理工具等，让你的设备变身家庭 「全能超主机」。 全开源、多硬件适配，安全沙箱守护数据，智能体验无门槛。 官方网站： https://site.istoreos.com/ 文档中心： https://doc.istoreos.com/zh/guide/istoreos/ 下载地址： https://fw.koolcenter.com/iStoreOS/ https://fw0.koolcenter.com/iStoreOS/x86_64_efi/istoreos-24.10.2-2025072517-x86-64-squashfs-combined-efi.img.gz 安装iStoreOS 正常影响系统后进入下面的界面（这里使用Ventoy PE来引导iStoreOS的系统镜像来安装） 选择istoreos-24.10.2-2025072517-x86-64-squashfs-combined-efi.img 默认选择第一项，回车 启动中 输入quickstart (或者 qu + tab 自动补全) 选择 Install X86 选择要安装的系统盘，这里我们使用第一块磁盘。 选择OK，继续 选择第一项，安装和重启系统 正在安装中 输入回车 quickstart (或者 qu [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/16653.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/16653.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>飞牛fnOS系统安装教程</title>
		<link>https://www.osyunwei.com/archives/16627.html</link>
		<comments>https://www.osyunwei.com/archives/16627.html#comments</comments>
		<pubDate>Thu, 31 Jul 2025 14:14:00 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[fnOS]]></category>
		<category><![CDATA[nas]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=16627</guid>
		<description><![CDATA[简介介绍： 飞牛私有云（fnOS）是一款基于Linux内核（Debian发行版）深度开发的国产免费NAS系统，兼容主流x86硬件设备，支持自由组装NAS和扩展外部存储 。系统功能涵盖影音管理、相册智能备份、Docker服务部署及远程访问，支持直接读取NTFS/exFAT/FAT32格式硬盘。 下载地址： https://iso.liveupdate.fnnas.com/x86_64/trim/fnos-0.9.15-1003.iso 系统安装： 使用安装盘正常引导之后会进入下面的界面 选择安装方式 推荐选择 Graphical Install（图形化安装流程），回车进入下一步 选择系统盘，方向键切换选择要用于系统安装的硬盘，回车或 Alt+N 进入下一步。 系统盘和数据盘是分开的，系统盘用来安装飞牛fnOS系统，数据盘用来做存储。 设置系统分区和 Swap 大小 在系统盘容量充足的情况下，建议系统分区设置为 64 GB。如安装在虚拟机下，可按情况适当减小。Swap 分区大小已按物理内存大小计算推荐值，可按硬件情况自行调整。 &#160; 注意：在 fnOS 上，系统将只安装在一块硬盘中。系统盘除系统分区以外的空间，可用于创建存储空间安装应用和存储文件。建议根据需要选择合适容量的 SSD 作为系统盘。 确认后，回车或 Alt+N 进入下一步。 确定 正在安装系统中 系统安装完成 下一步 安装完成后将自动进入网络设置，系统将自动检测已连接的网卡并获取动态 IP。如网卡未开启 DHCP，你需要手动设置 IP。确认后，回车或 Alt+S 保存设置。网络设置，建议设置为固定ip地址，设置完成后保存 确定 系统重启 系统重启完成后进入终端界面 通过浏览器访问此地址来设置和使用 fnOS。现在你可以将显示器、键盘、鼠标从主机上拔除了。 浏览器访问 fnOS，在电脑浏览器上访问上一步所设置的 IP 地址。首次进入 fnOS，你需要完成 2 项简单的系统初始化设置。点击 开始 NAS [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/16627.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/16627.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TrueNAS系统安装教程</title>
		<link>https://www.osyunwei.com/archives/16579.html</link>
		<comments>https://www.osyunwei.com/archives/16579.html#comments</comments>
		<pubDate>Thu, 31 Jul 2025 12:56:59 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[nas]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=16579</guid>
		<description><![CDATA[简介介绍： TrueNAS是一款基于开源软件构建的企业级网络存储解决方案，专注于数据存储、共享、备份及虚拟化支持，提供高可靠性、灵活性和易用性，适用于家庭用户、中小型企业乃至大型数据中心。 1. 基于 ZFS 文件系统 支持数据完整性校验（防止静默数据损坏）、快照、克隆、压缩、去重（需高内存）等功能。 支持 RAID 配置（如 RAID-Z、RAID-Z2、RAID-Z3），提供灵活的存储池管理。 2. 多协议支持 文件共享：SMB/CIFS（Windows）、NFS（Linux/Unix）、AFP（macOS）。 块存储：iSCSI（支持虚拟化和数据库存储）。 对象存储：兼容 S3 协议（通过 MinIO 插件等）。 3. 数据保护与恢复 定期快照：可手动或自动创建，支持按时间点恢复。 异地备份：通过 ZFS 复制功能同步到远程 TrueNAS 或其他存储设备。 云备份：集成 AWS S3、Google Cloud 等云存储。 4. 虚拟化与容器支持 可作为 VMware、KVM、Hyper-V 等虚拟化平台的后端存储。 TrueNAS SCALE 版本支持 Docker 容器和 Kubernetes（通过内置的 Apps 功能）。 5. 扩展性与插件 支持通过插件或虚拟机（Jail/Bhyve）扩展功能，如 Plex 媒体服务器、Nextcloud 等。 6.官方网站 https://www.truenas.com/truenas-community-edition/ 7.下载地址： [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/16579.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/16579.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux系统下可视化管理工具Cockpit安装使用</title>
		<link>https://www.osyunwei.com/archives/16427.html</link>
		<comments>https://www.osyunwei.com/archives/16427.html#comments</comments>
		<pubDate>Fri, 04 Jul 2025 07:16:44 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=16427</guid>
		<description><![CDATA[简单介绍 Cockpit是一款由红帽（Red Hat）开发的开源Linux服务器Web管理工具，通过可视化界面简化系统监控与管理操作，支持实时资源监控、服务管理、容器控制等功能，Cockpit设计为轻量级工具，适用于基础运维，适合单台主机使用。 官方网站 https://cockpit-project.org/ Cockpit的核心功能与特点‌‌ ‌1、系统监控‌ 实时查看CPU、内存、磁盘I/O及网络流量图表化数据 硬件信息展示（如PCI设备、存储分区详情） ‌2、管理工具‌ ‌服务管理‌：启停系统服务（如SSH、防火墙），查看日志 ‌用户与权限‌：管理账户、SSH密钥授权 ‌存储配置‌：支持LVM、文件系统挂载，磁盘空间可视化 ‌网络设置‌：配置网卡、防火墙规则（firewalld集成） ‌3、扩展支持‌ ‌容器管理‌：集成Podman/Docker（需安装cockpit-docker插件）‌ ‌虚拟机管理‌：通过cockpit-machines管理KVM虚拟机‌ ‌第三方插件‌：如存储管理（cockpit-storaged）、软件包更新（cockpit-packagekit） 4、Cockpit支持的操作系统： Red Hat 系列‌ CentOS 7 及更高版本 RHEL (Red Hat Enterprise Linux) 7 及更高版本 Fedora 21 及更高版本 ‌Debian 系列‌ Debian 10 及更高版本 Ubuntu 18.04 及更高版本 ‌其他发行版‌ openEuler（需适配） KeyarchOS（浪潮信息 KOS） 统信服务器操作系统（UOS） SUSE Linux Enterprise Server (SLES) Arch Linux（通过 [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/16427.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/16427.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
