<?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; Windows Server</title>
	<atom:link href="http://www.osyunwei.com/archives/tag/windows-server/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>Sun, 10 May 2026 14:53:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Windows Server 2025安装Hyper-V角色</title>
		<link>https://www.osyunwei.com/archives/15358.html</link>
		<comments>https://www.osyunwei.com/archives/15358.html#comments</comments>
		<pubDate>Wed, 05 Mar 2025 08:35:22 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Hyper-V]]></category>
		<category><![CDATA[iis]]></category>
		<category><![CDATA[Windows Server]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=15358</guid>
		<description><![CDATA[Hyper-V简介：是Windows自带的虚拟机平台，功能类似VMware Workstation Pro和VirtualBox 1、安装Hyper-V角色 打开服务器管理器-添加角色和功能 勾选Hyper-V 添加功能 下一页 点关闭-重启系统 系统重启中 Hyper-V角色已经安装完成 2、设置Hyper-V 打开服务器管理器-工具-Hyper-V管理器 创建两个虚拟交换机 1、外部虚拟交换机，类似VMware的桥接模式，虚拟机和宿主机在同一网段 2、内部虚拟交换机，类似VMware的NAT模式，虚拟机通过宿主机的网络接口访问网络 选择宿主机网卡-属性-共享-Internet连接共享 勾选允许其他网络用户通过此计算机的Internet连接来连接 家庭网络连接：选择内部虚拟交换机 确定 默认会分给内部虚拟交换机一个虚拟网段：192.168.137.0/24 3、创建虚拟机 配置网络-连接：可以选择外部虚拟交换机或者内部虚拟交换机 选择CentOS的镜像 至此，Windows Server 2025安装Hyper-V角色完成。 &#160;&#160;&#160;&#160;&#160;» 本文链接：https://www.osyunwei.com/archives/15358.html» 订阅本站：https://www.osyunwei.com/feed» 转载请注明来源：系统运维 » Windows Server 2025安装Hyper-V角色<p><a rel="bookmark" href="https://www.osyunwei.com/archives/15358.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/15358.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux系统访问Windows Server 2025共享文件夹</title>
		<link>https://www.osyunwei.com/archives/15224.html</link>
		<comments>https://www.osyunwei.com/archives/15224.html#comments</comments>
		<pubDate>Mon, 10 Feb 2025 01:59:17 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Windows Server]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=15224</guid>
		<description><![CDATA[Windows Server 2025默认已经安装了文件和存储服务，我们可以直接配置共享文件夹。 1、在Windows Server 2025下配置共享文件夹 打开：服务器管理器-工具-计算机管理-计算机管理（本地）-系统工具-共享文件夹-共享-更多操作-新建共享 设置共享文件夹路径：C:\smb 需要提前创建好共享文件夹 权限设置：管理员有完全访问权限；其他用户有只读权限 Windows系统访问共享： \\192.168.21.128\smb 输入管理员用户名密码进行登录 2、在Linux下访问Windows Server 2025共享文件夹 Linux访问Windows共享文件夹要使用Samba客户端工具 首先要在Linux系统上安装smbclient和cifs-utils包 yum install samba-client cifs-utils #CentOS/RHEL apt-get install samba-client cifs-utils #Debian/Ubuntu 查找Windows共享 smbclient -L //192.168.21.128 -U administrator administrator是连接到Windows共享时使用的管理员用户名，执行该命令后，会提示输入密码 挂载Windows共享 要挂载Windows共享目录到Linux文件系统中，需要创建一个挂载点，并使用mount命令 将\\192.168.21.128\smb挂载到本地的/mnt/windows_share目录下 创建挂载点： mkdir -p /mnt/windows_share mount -t cifs -o username=your_username,password=your_password //192.168.21.128/smb /mnt/windows_share 请将your_username和your_password替换为实际的Windows登录凭据 我这里是: mount -t cifs -o [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/15224.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/15224.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
