<?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; Xen</title>
	<atom:link href="http://www.osyunwei.com/archives/category/framework/virtualization/xen/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>开源虚拟化平台XCP-ng安装部署</title>
		<link>https://www.osyunwei.com/archives/16007.html</link>
		<comments>https://www.osyunwei.com/archives/16007.html#comments</comments>
		<pubDate>Thu, 26 Jun 2025 02:38:52 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Xen]]></category>
		<category><![CDATA[虚拟化]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=16007</guid>
		<description><![CDATA[XCP-ng简单介绍： 1、XCP-ng（Xen Cloud Platform - Next Generation）是一个基于Xen的开源虚拟化平台，源自Citrix Hypervisor（原XenServer）。 2、它由原开发者和社区维护，提供企业级虚拟化功能，支持运行多个操作系统（如Linux、Windows），具备快照、实时迁移、资源池管理等高级特性。 3、适用于私有云、混合云和服务器整合等场景，具有高稳定性、灵活性和可定制性。 官方网站：https://xcp-ng.org/ 镜像下载地址：https://mirrors.xcp-ng.org/isos/8.3/xcp-ng-8.3.0-20250606.iso XCP-ng安装： xcp-ng-8.3.0-20250606.iso镜像成功引导后会进入下面的界面 默认回车即可 键盘设置，默认即可 选择ok 选择Accept EUA 接受最终用户许可协议 默认ok 选择安装磁盘ok 选择LVM磁盘分区格式 ok 我们是从本地镜像安装，选择Local Media ok 不验证安装介质，跳过 ok 设置 root 账户的密码，用来登录系统 网络设置，默认ipv4 ok 设置静态ip地址、网关 ok 设置DNS ok 设置DNS ok 选择Shanghai ok 时间服务器设置，默认即可 ok Install XCP-ng 安装 正在安装中 安装完成 ok 系统重新启动后的界面 登录web管理界面 XCP-ng默认自带一个web管理界面 打开https://192.168.21.83/ 输入管理员账号和密码进行登录 系统登录成功后的界面 [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/16007.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/16007.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XenServer虚拟机扩容LVM磁盘分区</title>
		<link>https://www.osyunwei.com/archives/7956.html</link>
		<comments>https://www.osyunwei.com/archives/7956.html#comments</comments>
		<pubDate>Thu, 18 Sep 2014 07:03:37 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Xen]]></category>
		<category><![CDATA[LVM]]></category>
		<category><![CDATA[XenServer]]></category>
		<category><![CDATA[磁盘分区]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=7956</guid>
		<description><![CDATA[说明：XenServer里面安装的虚拟机，分区的时候采用的是LVM磁盘分区 需求：现在需要扩容虚拟机根分区/ 具体操作： 一、使用XenCenter增大虚拟机磁盘容量,如下图所示 增大当前磁盘到50GB 注意：必须在虚拟机关机状态下进行 二、查看硬盘容量 df -h #可以看到此时根分区还是12G，没有变化 fdisk -l #已经可以看到整个磁盘容量变为53.6GB了 三、创建新的磁盘分区 fdisk /dev/xvda #对磁盘/dev/xvda进行操作 p #查看当前分区 系统运维  www.osyunwei.com  温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链 n #创建新分区 4 #创建第四个主分区 t #修改分区类型 8e #输入8e，代表分区使用LVM类型 p #查看当前分区状态 w #保存以上操作，否则不能新建分区 重新启动系统之后，再进行以下操作 四、把新创建的分区/dev/xvda4加入到与根分区/相同的LVM中 mkfs.ext3 /dev/xvda4 #格式化分区，需要等一会 pvcreate /dev/xvda4 #创建一个新的LVM分区 pvdisplay #查看已经存在的pv（物理卷） 系统运维  www.osyunwei.com  温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链 vgdisplay #查看当前已经存在的vg（逻辑卷组） lvdisplay #查看已经存在的lv（逻辑卷） vgextend VolGroup00 /dev/xvda4 #把/dev/xvda4加入与/目录相同的vg（逻辑卷组） [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/7956.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/7956.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XenCenter客户端安装图解教程</title>
		<link>https://www.osyunwei.com/archives/6648.html</link>
		<comments>https://www.osyunwei.com/archives/6648.html#comments</comments>
		<pubDate>Thu, 22 Aug 2013 14:35:58 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Xen]]></category>
		<category><![CDATA[XenCenter]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=6648</guid>
		<description><![CDATA[安装说明： XenCenter是用来管理和维护XenServer主机的，创建、管理、删除虚拟机等几乎所有的操作都在XenCenter中完 成。安装XenCenter需要.Net 3.5框架支持。这里用Windows Server 2008 R2系统安装，已经自带.Net 3.5。 注意：XenCenter的版本要与XenServer版本对应，低版本的XenCenter不能连接高版本的XenServer主机。 安装图解： 在客户端浏览器打开XenServer主机的ip地址，如下所示： 点击XenCenter installer 出现下面界面 运行 系统运维  www.osyunwei.com  温馨提醒：qihang01原创内容 版权所有,转载请注明出处及原文链接 运行 Next 安装路径，默认即可。 Next Install 安装 Finish 安装完成 在开始-程序- Citrix - Citrix XenCenter 打开Citrix XenCenter 如下图： 选择NO 不检测软件更新 进入下面界面： 系统运维  www.osyunwei.com  温馨提醒：qihang01原创内容 版权所有,转载请注明出处及原文链接 点Add Now Server 添加XenServer主机 输入XenServer主机的IP地址、登录账号和密码 点 Add 添加 正在添加中 是否保存XenServer主机的连接状态，下次登录直接连接到主机 这里默认，不用勾选，OK 出现下面的界面 XenCenter已经连接到XenServer主机 [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/6648.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/6648.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>XenServer 6.2安装图解教程</title>
		<link>https://www.osyunwei.com/archives/6616.html</link>
		<comments>https://www.osyunwei.com/archives/6616.html#comments</comments>
		<pubDate>Thu, 22 Aug 2013 14:07:10 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Xen]]></category>
		<category><![CDATA[XenServer]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=6616</guid>
		<description><![CDATA[安装说明： 安装XenServer 6.2的服务器CPU必须支持虚拟化，Intel (VT-X) 或者AMD (AMD-V) 安装图解： 1、下载XenServer 6.2系统镜像文件:XenServer-6.2.0-install-cd.iso 2、刻录XenServer 6.2镜像光盘，服务器从光驱启动，出现如下界面： 回车，直接安装，出现下面界面： 键盘模式：默认US OK OK 版权声明界面，Accept EULA 回车 系统运维  www.osyunwei.com  温馨提醒：qihang01原创内容 版权所有,转载请注明出处及原文链接 上图表示服务器CPU没有开启虚拟化，请检查BIOS设置，开启虚拟化后继续操作。 注意：不开启虚拟化，不能安装64位操作系统 选择第一项，安装在本地磁盘 Ok 选择安装介质，选择第一项，本地光盘 Ok 选择No，不安装补丁包 选择第一项，跳过安装介质检测 Ok 设置root密码 OK 网络设置界面 选择第二项，设置静态IP、子网掩码、网关 Ok Hostname:设置主机名，自定义 设置DNS地址：根据自己的需要设置 OK 系统运维  www.osyunwei.com  温馨提醒：qihang01原创内容 版权所有,转载请注明出处及原文链接 选择区域：Asia Ok 选择时区：Shanghai Ok 服务器时间设置 第一项:使用NTP服务器来同步时间 第二项：使用本地时间 这里选择本地时间 Ok 开始安装 正在安装中 设置时间 Ok [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/6616.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/6616.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
