我在使用 xen 服务器配置虚拟机时遇到了问题。
按照教程我做了以下步骤:
- 在我的主机上创建 lvm 分区(根、交换)并格式化
- 将根分区挂载到 /mnt
- debootstrap --arch amd64 精确/mnthttp://us.archive.ubuntu.com/ubuntu/
创建
.cfg
文件memory = 1024 vcpus = 1 name = "testdomain" vif = [' '] disk = ['phy:/dev/<VG>/testdomain_root,sda1,w', 'phy:/dev/<VG>/testdomain_swp,sda2,w'] root = "/dev/sda1 ro" extra = "console=hvc0"
- 卸载分区
- 最后执行
xm create -c testdomain.crg
但总是告诉我引导加载程序没有返回任何东西
我的错误在哪里?