Somehow after upgrading to 12.04, my virtual machines always boot with an attempt to boot from the network first. See this:
while I don't have any PXE configuration set:
I've tried:
- to disable SPICE, by changing the
emulator
to/usr/bin/kvm
from/usr/bin/kvm-spice
by editing the XML. - Ctrl+B to configure the iPXE, but it doesn't let disable this as a boot option.
- setting another type of NIC - not an option, I need
virtio
for performance reasons. However,e1000e
doesn't work either. - removing the NIC: works. However, I need network.
- Googling around. Hard. Lots of result is about failing configured PXE boots.
Not a big issue, but it increases boot times by 50-100% here (booting from SSD), so it's relatively long and annoys me.
How can I disable this and boot from virtual hard disk directly?
Short answer
Upgrade to libvirt 0.9.10+ (available in Quantal) and add the
<rom bar='off'/>
option to the interface configuration of the machine's XML definition.Long answer
Now that I'm actually using the iPXE boot option I see that the delay occurring in the SeaBIOS screen is not an actual boot attempt. It's just loading the Virtio network option ROM and that takes a few annoying seconds, i.e. it's not yet doing an iPXE boot attempt. This lead me to read the libvirt documentation again, and I made an interesting discovery.
As far as I could find, since libvirt 0.9.7 the behaviour has changed to load interface's option ROMs by default. Ubuntu 11.10 shipped with 0.9.2, Ubuntu 12.04 comes with 0.9.8. This definitely makes sense as to why I see this happening since the upgrade to 12.04.
Moreover, this has become configurable in libvirt version 0.9.10 with the
<rom bar='off'/>
option in the XML! (see here) However, that version of libvirt is not available in Ubuntu 12.04 and I'll have to upgrade to 12.10 or backport it. This makes Ubuntu 12.04 fall between two stools.Other workarounds are removing the option ROM files as pointed out by @A.H.' and changing the SeaBIOS 'filesystem' as pointed out by @NlightNFotis. However, both ways will basically disable iPXE completely and it's not configurable (if sticking to
virtio
network devices only). As I have a mixed setup of iPXE machines and non-PXE machines, I really need this to be configurable.My experiments on the same issue gave me some hints:
The package
kvm-ipxe
installs several PXE option ROMs into/usr/share/qemu/
:Somehow these are automatically found and used by seabios when booting with one of these NICs. When I do a
chmod a= pxe*.rom
on these files and start the virtual machine I get the "error" messagebut it boots cleanly and without PXE.
I was able to get around this in Ubuntu 12.04 by passing the following options to qemu-kvm on the command-line (setting the romfile to blank is the trick):
I was able to prevent this using "-net none":
From your pictures, I can see that most likely it has to do with the VM BIOS. The VM configuration must not overwrite
SeaBIOS
' settings, something which must be causing the VM to boot fromPXE
first.For a first possible solution, try to see if you can enter the Virtual Machine's BIOS and edit the options prevalent there.
NOTE: Will continue to update the answer while my research unveils more possible solutions or causes.
[EDIT #1]: You can find information on how to set up the boot order in SeaBIOS here. That should solve the problem.