Linux系统下Xen虚拟机的安装和配置详细教程
注 1 :本次实验环境 真机 centos 5.8 32位, 虚拟机 centos 5.2 32位, 真机ip: 192.168.100.117
注 2 :实验前一定要先记下真机的 mac 地址,以免以后不能上网用,我这里的 mac 是 00:1d:7d:cd:d7:74
第一步 查看硬件支持
1. 半虚拟化硬件要求
如果出现 pae 字符,表示支持半虚拟化; 我们这次就是使用半虚拟化实验。
2. 全虚拟化硬件要求
由于我没有支持的硬件,大概说下,查询命令和上面的一样
inter 的 cpu 要出现 pae vmx ; amd 的 cpu 要出现 pae svm
第二步 安装 xen 核心软件
注意要先关闭selinux和禁止netmanager
在
1. 基本安装和检测
[root@xen ~]# vi /boot/grub/menu.lst</p> <p>
<strong>default=0</strong>
timeout=5
splashimage=(hd0,0)/grub/splash.xpm.gz
hiddenmenu
<strong>title centos (2.6.18-308.4.1.el5xen)</strong>
root (hd0,0)
kernel /xen.gz-2.6.18-308.4.1.el5
module /vmlinuz-2.6.18-308.4.1.el5xen ro root=label=/ rhgb quiet
module /initrd-2.6.18-308.4.1.el5xen.img
title centos (2.6.18-308.4.1.el5)
root (hd0,0)
kernel /vmlinuz-2.6.18-308.4.1.el5 ro root=label=/ rhgb quiet
initrd /initrd-2.6.18-308.4.1.el5.img
看到上面的 el5xen 内核版本的系统了吗?将 default 改为 0 就是以它启动。
然后,重启服务器
启动好后,再次确认是否是以 xen 内核启动的
[root@xen ~]# <span>chkconfig --list | grep xen</span>
xend 0:关闭 1:关闭 2:启用 <strong>3:启用</strong> 4:启用 <strong>5:启用</strong> 6:关闭
xendomains 0:关闭 1:关闭 2:关闭 <strong>3:启用</strong> 4:启用 <strong>5:启用</strong> 6:关闭
[root@xen ~]# <span>pstree -p | grep xen</span>
| |-xenbus(14)
| `-xenwatch(13)
|-xenconsoled(2860)---{xenconsoled}(2861)
|-xend(2856)---xend(2858)-+-{xend}(28 62)
| |-{xend}(2866)
| |-{xend}(2867)
| |-{xend}(3086)
| `-{xend}(3087)
|-xenstored(2852)
[root@xen ~]# <span>xm list</span>
name id mem(mib) vcpus state time(s)
<span>domain-0</span> 0 1763 2 r----- 37.1
如果上面几步有颜色和加粗部分和我差不多的话,说明启动成功了!
2. xen 的软件结构
/usr/sbin/xend xend的启动脚本,我最爱的 python 写的
/usr/sbin/xm 管理 xen 的命令,输入 xm help 查询用法
/etc/xen/xend-config.sxp 这个是 xend 配置文件,一般不用动
/etc/xen/ 里面包含数个 domain-u 的配置范本, xmexample.hvm 可作为完整虚拟的范本
/etc/xen/auto 系统开机就自动启动某个 domain-u ,下面的举例用法:
[root@xen ~]# cd /etc/xen/auto/
[root@xen auto]# ln -s ../xmexample.hvm .
这样系统启动的时候就启动 xmexample 了,但是不要这么直接用(鸟哥说的)
/etc/xen/scripts 包括虚拟设备的启动、网络的启动等
第三步 安装虚拟系统
1. 先创建一个目录用来放虚拟系统(目录自己定)
我们这里使用 /var/vps 这个目录
2. 然后制作一个空映像文件来放系统
count 就是大小; 小二,给我来 8g 空间
3. 安装 vsftp 并把光驱中的 系统 挂载到 ftp 目录下
[root@xen ~]# service vsftpd start
这样一个匿名 ftp 就可以用了,下载挂载光驱
测试下是不是挂载成功了,从浏览器中访问
能看到光盘内容说明成功了。
4. 进入 /var/vps 目录建立虚拟机
[root@xen vps]# virt-install –prompt</p> <p>
what is the name of your virtual machine? vps1 #输入名字</p> <p>how much ram should be allocated (in megabytes)? 415 #内存大小</p> <p>what would you like to use as the disk (file path)? /var/vps/vps1.img #存放位置,写上面 of 后的地址</p> <p>what is the install url? ftp://192.168.100.117/pub/ #安装文件在哪
接下来就是 text 安装模式
| |
| what language would you like to use |
| during the inst
allation process? |
| |
| catalan ^ |
| chinese(simplified) : |
| chinese(traditional) # |
| croatian : |
| czech : |
| danish : |
| dutch : |
| english v |
| |
| +----+ |
| | ok | |
| +----+ |
| |
| |
+---------------------------------------+
/ between elements | selects | next screen
文本模式安装不难,如果有问题,网上搜搜
安装好后,重启,出现:
输入帐号密码就进去了
退出的按键和 telnet 的一样: ctrl + ]
5. 管理 xen 虚拟机
查看当前系统中的虚拟机普通信息
name id mem(mib) vcpus state time(s)
domain-0 0 1599 2 r----- 421.9
vps1 2 415 1 -b---- 24.9
顺便讲下上面 state 的 6 种状态:
r – 运行、b – 阻塞(不运行状态或者是 sleep 状态)、p – 暂停(可能执行了 xm pause)、s – 关闭、c – 崩溃、d – 垂死
查看虚拟机的负载
关闭虚拟机
进入虚拟机
启动虚拟机
把 vps1 加入到真机启动自启动
其它参数输入 xm help
6. xen虚拟机复制
先关闭虚拟机
复制虚拟机的镜像文件和配置文件
[root@xen xen]# cp /etc/xen/vps1 /etc/xen/vps2
修改新复制虚拟机的配置文件
原内容为:
修改后为:
注: 就是要保证 name、uuid、mac 唯一,然后把 disk 路径改了
然后启动并进入新的虚拟机
修改主机名和ip
[root@localhost ~]# vi /etc/sysconfig/network
上面2个比较简单,我就不说了
# xen virtual ethernet</p> <p>device=eth0</p> <p>bootproto=static</p> <p>hwaddr=00:16:3e:44:09:cb #这里最好换成上面修改过的配置文件中的mac地址</p> <p>onboot=yes</p> <p>ipaddr=192.168.100.167</p> <p>netmask=255.255.255.0</p> <p>network=192.168.100.0</p> <p>gateway=192.168.100.1