我有一台运行 Xen 4.4 的 Debian 服务器。我想创建一个新的 Windows 7 虚拟机并从 ISO 镜像安装它。这是我用于此的配置文件:

kernel = "/usr/lib/xen-4.4/boot/hvmloader"

builder = 'hvm'

name = "win7"
uuid = "44dee145-256a-4450-9270-73aebd8b64a5"
memory = 2048
vcpus = 1
on_poweroff = "destroy"
on_reboot = "restart"
on_crash = "restart"

disk = [
         'phy:/dev/vg0/win7-demo-disk,hda,w',
         'file:/tmp/Win7.iso,hdc,r,devtype=cdrom',
       ]

vif = [ "mac=00:16:3e:46:e6:fb,bridge=br0" ]
boot="dc"
vnc = 1
vnclisten = "0.0.0.0"
vncunused = 1
localtime = 1
vncpasswd = "XXXXXXXX"

我执行这个命令:xl create win7.cfg

它打印以下错误:
Parsing config from win7.cfg
WARNING: ignoring "kernel" directive for HVM guest. Use "firmware_override" instead if you really want a non-default firmware
libxl: error: libxl_dm.c:1250:libxl__spawn_local_dm: device model /usr/lib/xen-4.4/bin/qemu-dm is not executable: No such file or directory
libxl: error: libxl_dm.c:1388:device_model_spawn_outcome: (null): spawn failed (rc=-3)
libxl: error: libxl_create.c:1186:domcreate_devmodel_started: device model did not start: -3
libxl: error: libxl_dm.c:1484:kill_device_model: unable to find device model pid in /local/domain/395/image/device-model-pid
libxl: error: libxl.c:1421:libxl__destroy_domid: libxl__destroy_device_model failed for 395

/usr/lib/xen-4.4/bin/ 目录中我没有 qemu-dm 文件。我在 Debian forun 上读过 qemu-dm 已从 Xen 4.4 中删除。以前我有 Xen 4.1。对于这个版本, qemu-dm exeists 并存储在 /usr/lib/xen-4.4/bin/qemu-dm

如何解决这个问题呢?

最佳答案

/usr/lib/xen-4.4/bin/qemu-dm 似乎是一个计算路径,但正如您所提到的,它指向 Debian 8 Jessie 中没有现有文件。

仅使用 Debian 8 板载资源对我有什么帮助:

  • 安装 qemu-system-x86 。 (不确定这是否真的有必要。)
  • 从 DomU 配置文件中删除 kernel = … 行。 (为了消除此行将被忽略的警告。)
  • 在 DomU 配置文件中添加一行 device_model_version="qemu-xen"。 (这可能是让它再次工作的主要事情。)

  • 在浏览 this thread on the xen-users mailing list 后凭经验发现。

    关于debian - Xen 4.4 : "/usr/lib/xen-4.4/bin/qemu-dm" is not executable,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33761738/

    10-16 09:36