web-dev-qa-db-ja.com

16.10へのアップグレード後に仮想マシンを開けない

16.04から16.10にアップグレードしましたが、kvm仮想マシンを起動できなくなりました。私はこのエラーを受け取っています:

Error starting domain: internal error: process exited while connecting to monitor: 2016-10-27T14:47:58.353049Z qemu-system-x86_64: -enable-kvm: unsupported machine type
Use -machine help to list supported machines

Traceback (most recent call last):
  File "/usr/share/virt-manager/virtManager/asyncjob.py", line 90, in cb_wrapper
    callback(asyncjob, *args, **kwargs)
  File "/usr/share/virt-manager/virtManager/asyncjob.py", line 126, in tmpcb
    callback(*args, **kwargs)
  File "/usr/share/virt-manager/virtManager/libvirtobject.py", line 83, in newfn
    ret = fn(self, *args, **kwargs)
  File "/usr/share/virt-manager/virtManager/domain.py", line 1402, in startup
    self._backend.create()
  File "/usr/lib/python2.7/dist-packages/libvirt.py", line 1035, in create
    if ret == -1: raise libvirtError ('virDomainCreate() failed', dom=self)
libvirtError: internal error: process exited while connecting to monitor: 2016-10-27T14:47:58.353049Z qemu-system-x86_64: -enable-kvm: unsupported machine type
Use -machine help to list supported machines
1
DavidEG

これは私のために働いたものです。ランニング ...

virsh edit your-virtual-machine-name

使用するエディターを尋ね、仮想マシン用に生成されたXMLを表示します。このセクション...

<os>
  <type Arch='x86_64' machine='pc-i440fx-vivid'>hvm</type>
  <bootmenu enable='no'/>
</os>

これに変更することができます...

<os>
  <type Arch='x86_64' machine='ubuntu'>hvm</type>
  <bootmenu enable='no'/>
</os>

機械のヘルプを見ることに基づいて...

$ kvm-spice -machine help
Supported machines are:
ubuntu               Ubuntu 16.10 PC (i440FX + PIIX, 1996) (alias of pc-i440fx-yakkety)
pc-i440fx-yakkety    Ubuntu 16.10 PC (i440FX + PIIX, 1996) (default)
pc-i440fx-xenial     Ubuntu 16.04 PC (i440FX + PIIX, 1996)
pc-i440fx-wily       Ubuntu 15.04 PC (i440FX + PIIX, 1996)
pc-i440fx-trusty     Ubuntu 14.04 PC (i440FX + PIIX, 1996)
.
.
.

Pc-i440fx-vividはサポートされなくなったか、除外されたようです(おそらく end-of-life に達したため)。

3
msy2