xen:使用xen-create-image创建PV Guest

二.使用xen-create-image创建PV Guest

需要安装的软件:debootstrap 

apt get install debootstrap

修改配置文件/etc/xen-tools/xen-tools.conf,

在使用xen-create-image创建PV时,一些参数的值可以再这里修改.

配置文件很简单,我就没有贴出配置来喽.

创建Ubuntu 12.04 ( precise)步奏:

cd/usr/lib/xen-tools/
ln -skarmic.d precise.d
xen-create-image--size=30Gb --swap=1024Mb --ip=10.20.20.21 --netmask=255.255.255.0--gateway=10.20.20.20 --nameserver=114.114.114.114 --hostname=vm01.test.yao

使用xen-create-image创建如果没有错误,会输出root密码,产生配置文件/etc/xen/vm01.test.yao.cfg,至于vm01的存储位置就在xen-tools.conf中dir指定的目录下了:

启用vm01:

xm create -c vm01.test.yao.cfg

使用xm list查看,就看到vm01已创建成功,

wKiom1Qo27agR11FAACs9bo-5ZU142.jpg使用xm console  vm01.test.yao 进入vm01,一个最小安装的Ubuntu 12.04可以享用了.



你可能感兴趣的:(xen,PVGuest)