LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   Qemu (KVM) and Vista. (https://www.linuxquestions.org/questions/linux-software-2/qemu-kvm-and-vista-616158/)

ComputerGreek 01-24-2008 09:54 PM

Qemu (KVM) and WINDOWS Vista.
 
Qemu (KVM) and Vista.

I wrote this article nearly a year ago, but never got around to finishing it. I have added the driver ISO, but otherwise it is little changed. I used the Kernel Virtual Machine (KVM) rather than QEMU itself, but what works for KVM, will usually work for QEMU, as KVM has QEMU as its foundation. If time permits, I will add a section on which CPUs are KVM capable and how to compile the latest version of KVM. Until then, I will point you to:

http://kvm.qumranet.com/kvmwiki and
http://fabrice.bellard.free.fr/qemu/

Copy your Vista installation disk to an iso image with:

dd if=/dev/cdrom of=vista.iso

Create a raw image with:

/usr/local/kvm/bin/qemu-img create -f raw vista.img 10G

The reason for using the raw format is that you can use ntfs-3g to mount the image. This makes copying files into the image a breeze. However, do not boot the image when it is mounted, or mount it when booted, as this will probably fry it.

You need one of the following kvm kernel modules:

/sbin/modprobe kvm-amd
/sbin/modprobe kvm-intel

Vista does not produce valid boot sector information, so partition and format the image, vista.img, with XP or Linux. For example, use:

qemu-system-x86_64 -boot d -m 512 vista.img -cdrom xp.iso

to format the image using an XP install disk (xp.iso). Stop after the partition is formated (with NTFS).

KVM doesn't make a distinction between i386 and x86_64 so, even in i386, you should use qemu-system-x86_64. If your system cannot find qemu-system-x86_64, you might need to use the full path:

/usr/local/kvm/bin/qemu-system-x86_64.

Now install Vista with:

qemu-system-x86_64 -boot d -m 512 vista.img -cdrom vista.iso

The installation runs much faster from the iso image, but, you can also install from the CD with:

qemu-system-x86_64 -boot d -m 512 vista.img -cdrom /dev/cdrom

Now mount vista.img and copy the drivers into the image:

mount -t ntfs-3g -o loop,offset=$((63*512)) vista.img /1
mkdir /1/drivers; cp -r ES1370 RTL8029 /1/drivers

$((63*512)) = 32256, 63 sectors of 512 bytes. Or, use the tiny iso image, drivers.iso:

bunzip2 drivers.iso.bz2
qemu-system-x86_64 -m 512 -soundhw es1370 -usb -usbdevice tablet vista.img -cdrom drivers.iso

The option -soundhw es1370 has qemu emulate an Ensoniq AudioPCI ES1370 sound card.

The default network hardware -net nic,model=ne2k_pci is a Realtek 8029 PCI Ethernet Card.

Drivers for both, are on drivers.iso. Install them by right-clicking on the .inf files and choosing install from the menu.

The complete default network option is -net nic,model=ne2k_pci -net user. The -net user option sets up a SLIRP connection (since it is modeled on the earlier SLIRP connections). It allows you to get on the internet and is naturally fire-walled. It is not a true network connection, e.g., ping does not work.

Qemu can also emulate a Realtek 8139 Ethernet Card, which Vista does have a driver for, however, this does not recognize the SLIRP connection, the DHCP server, or the tap devices (so is essentially useless to you).

To use the Realtek 8139 card use the option -net nic,model=rtl8139.

Kvmwiki claims that rtl8139 now works with recent versions of KVM. You apparently need, the 0.9.0-cvs version of QEMU (check, e.g., kvm-58/qemu/VERSION). If you are still using QEMU 0.9.0, then you will need the rtl8029 driver. It should be noted, that the rtl8139 driver, always "worked", you just couldn't connect to the internet, or do anything useful, with it.

Now run Vista with the command:

qemu-system-x86_64 -m 512 -localtime -soundhw es1370 -usb -usbdevice tablet vista.img

The -usb -usbdevice tablet option allows your mouse to escape from Vista to Linux by just moving outside the Vista window (without this, you have to press Ctrl-Alt to escape the mouse).

The -m 512 option allocates 512 MB of RAM to KVM.

Using the -no-acpi option can result in much faster installation and performance. However, I am told that Vista does not work with this option?

ComputerGreek 01-26-2008 04:23 AM

The complete default network option is -net nic,model=ne2k_pci -net user. It allows you to get onto the internet and is naturally fire-walled. The -net user part sets up a SLIRP connection. It is not a true network connection, e.g., ping does not work. The SLIRP connection comes with its own DHCP server. Setting a static IP address will cause things not to work.

ComputerGreek 01-26-2008 03:37 PM

Does anyone know if Vista works with the -no-acpi option?

ComputerGreek 01-27-2008 05:00 PM

Please; Does anyone know if Vista works with the -no-acpi option?

ComputerGreek 01-28-2008 07:44 PM

Does anyone actually read these threads?

ComputerGreek 01-29-2008 06:54 PM

Why doesn't someone humor me and reply? Just to prove that at least one person has read (at least) some of this thread.

ComputerGreek 01-31-2008 12:08 AM

Why doesn't someone humor me and reply? A good question.

teddyt 01-31-2008 12:21 PM

I think you turned us all off with your use of 'Vista' in the title: it's an ugly, obscure OS, the door of whom only the most self-hating among us dares to knock.

No idea. But this is a reply.

Uncle_Theodore 01-31-2008 12:29 PM

Quote:

Originally Posted by ComputerGreek (Post 3040709)
Why doesn't someone humor me and reply? A good question.

Gee, man, I think you've got your reply. No, nobody knows if vista works with -no-acpi :D

ComputerGreek 02-01-2008 05:13 PM

Thanks Ted, and here's me thinking that Vista might attract attention.

jens 02-01-2008 06:35 PM

Quote:

Originally Posted by ComputerGreek (Post 3042949)
Thanks Ted, and here's me thinking that Vista might attract attention.

Vista is really the last thing you want to to run in kqemu (most of us don't even have the hardware for it ) ;)

As far as I know, Vista needs acpi support to install it.
I never managed to run it qemu for this reason (acpi support in qemu is new and buggy).

ComputerGreek 02-02-2008 03:12 AM

Quote:

Originally Posted by jens (Post 3043016)
Vista is really the last thing you want to to run in kqemu (most of us don't even have the hardware for it )

It runs OK, except for anything that involves heavy graphics.

XP Office extra run fine.

And by the way, not kqemu, but Qemu and KVM.

You use kqemu if you cannot run the kernel virtual machine (KVM).

ComputerGreek 02-08-2008 12:31 AM

By the way, run XP, not Vista, if at all possible.

XP is all-round better.

jens 02-08-2008 12:46 AM

Quote:

Originally Posted by ComputerGreek (Post 3049879)
By the way, run XP, not Vista, if at all possible.

XP is all-round better.

I'm still interested in knowing if Vista will work in Qemu (I use kqemu since Debian comes with a 2.6.18 kernel).

I tried the instructions you posted above, but it still gives me the same old acpi error when booting...

Did you try it in both kvm and qemu (and what 64 version are you using?)?

teddyt 02-08-2008 10:46 AM

Quote:

Originally Posted by jens (Post 3049885)
I'm still interested in knowing if Vista will work in Qemu (I use kqemu since Debian comes with a 2.6.18 kernel).

I'm not sure it matters - while I don't remember the exact policy, it violates the license to run at least some versions of Vista virtualized.


All times are GMT -5. The time now is 09:14 AM.