XEN虚拟机在Linux上的安装和使用教程
1、安装xen
yum install xen* kernel-xen* virt-manager vnc* xen-lib python-virtinst
kernel-xen:可以跑 xen 的 linux 核心
xen:主要的 xen 套件,包括配置文件、启动脚本和一些函数库
xen-libs:xen 所需要的函数库
python-virtinst:提供终端安装的软件
virt-manager:用于图形界面管理xen
2、修改grub 让系统从xen内核引导
[root@center ~]# more /etc/grub.conf
# grub.conf generated by anaconda
#
# note that you do not have to rerun grub after making changes to this file
# notice: you have a /boot partition. this means that
# all kernel and initrd paths are relative to /boot/, eg.
# root (hd0,1)
# kernel /vmlinuz-version ro root=/dev/sda1
# initrd /initrd-version.img
#boot=/dev/sda
default=0
timeout=5
splashimage=(hd0,1)/grub/splash.xpm.gz
hiddenmenu
title centos (2.6.18-194.32.1.el5xen)
root (hd0,1)
kernel /xen.gz-2.6.18-194.32.1.el5
module /vmlinuz-2.6.18-194.32.1.el5xen ro root=label=/ rhgb quiet
module /initrd-2.6.18-194.32.1.el5xen.img
title centos (2.6.18-194.el5)
root (hd0,1)
kernel /vmlinuz-2.6.18-194.el5 ro root=label=/ rhgb quiet
initrd /initrd-2.6.18-194.el5.img
3、重启系统并确认是否已经使用xen内核引导
[root@center ~]# uname -ar
linux test1.aa.com 2.6.18-274.17.1.el5xen #1 smp tue jan 10 18:06:37 est 2012 x86_64 x86_64 x86_64 gnu/linux
4、调整xen server (dom0)使用的内存
default=0
timeout=5
splashimage=(hd0,0)/grub/splash.xpm.gz
hiddenmenu
title centos (2.6.18-238.9.1.el5xen)
root (hd0,0)
kernel /xen.gz-2.6.18-238.9.1.el5 dom0_mem=2097152 (kb 单位 2g)
module /vmlinuz-2.6.18-238.9.1.el5xen ro root=label=/
module /initrd-2.6.18-238.9.1.el5xen.img
title centos (2.6.18-194.el5)
root (hd0,0)
kernel /vmlinuz-2.6.18-194.el5 ro root=label=/
initrd /initrd-2.6.18-194.el5.img
调整完成后需要重启服务器。
5、建立本地yum源,便于安装系统
修改http.conf:
增加监听端口:
listen 8000
listen 8001
增加虚拟主机:
<virtualhost *:8001>
documentroot /data/os
<directory “/data/os”>
options indexes multiviews
allowoverride none
order allow,deny
allow from all
</directory>
</virtualhost>
重启httpdd:/etc/init.d/httpd reload
6、创建虚拟机
virt-install -n xen1 -r 256 -f /home/xen1.img -lhttp://192.168.0.110:8001 –network=network:default -s 20 –nographics –vnc –vcpus=8
-n :后面接虚拟机名称,配置 /etc/xen 底下
-r : 后面接分配的内存大小
–vcpus : 分配多少个cpu
-f :后面接新建的磁盘文件
–nographics :不使用图形化安装
-p : 半虚拟化
-s : 虚拟机的硬盘空间
-l :后面接安装源
7、克隆虚拟机
virt-clone -o xen1 -n xen2 -f /home/xen2.img
8、常见命令
xm info 查看宿主机信息
xm top 监控宿主机和domain机器信息
xm create /etc/xen/xen1 启动
xm shutdown xen1 关闭
xm reboot xen1 重启
xm pause xen1 暂停
xm resume xen1 恢复
xm list
xm console xen1 进入console
ctrl + ] 退出console
9、优化
[root@test1 ~]# xm list
name id mem(mib) vcpus state time(s)
domain-0 0 474 1 r—– 1222.9
xen1 10 255 1 -b—- 81.9
优化方法:xm vcpu-pin 3 0 1 (将虚拟机使用的vcpu 直接由物理cpu 1处理)
确认是否已经分配单独物理cpu:
xm vcpu-list 3
推荐阅读
-
在linux或unix服务器上安装、使用MySQL的注意事项
-
在linux或unix服务器上安装、使用MySQL的注意事项
-
Linux上安装Python的PIL和Pillow库处理图片的实例教程
-
Linux上安装Python的PIL和Pillow库处理图片的实例教程
-
在win10和linux上分别安装Python虚拟环境的方法步骤
-
在Linux上安装和使用Docker的方法
-
在树莓派2或树莓派B+上安装Python和OpenCV的教程
-
在Linux上安装Python的Flask框架和创建第一个app实例的教程
-
在Linux上安装和使用Docker的方法
-
在Windows上使用putty远程登录Linux服务器的简单教程