On 09.08.2017 20:12, Programmingkid wrote: > >> On Aug 9, 2017, at 12:37 PM, Paolo Bonzini <pbonz...@redhat.com> wrote: >> >> On 09/08/2017 16:56, Programmingkid wrote: >>> The default vga card not longer works with a Windows 2000 guest. All I see >>> is a black screen after a the Windows splash screen. >>> >>> This is the command-line I used: >>> >>> qemu-system-i386 -hda Windows2000HD.qcow2 -boot c -m 512 >>> >>> When using the -vga cirrus option video works. Testing was done with QEMU >>> v2.10.0 rc2. >> >> Did it work in 2.9? >> >> Paolo > > I haven't test version QEMU 2.9.0 but I did test version 2.8.0 and it has the > same problem. Starting up Windows 2000 in VGA mode allowed me to access the > operating system. Found out QEMU's default video controller is not > recognized. In the Device Manager I can see a yellow question mark for Video > Controller (VGA Compatible). I remember Windows 2000 being able to use the > default video card in QEMU in the past. I may be able to bisect this issue > after all.
I guess you'll end up with QEMU 2.1 as good version and 2.2 as the first "bad" version. According the qemu-doc: -vga type Select type of VGA card to emulate. Valid values for type are cirrus Cirrus Logic GD5446 Video card. All Windows versions starting from Windows 95 should recognize and use this graphic card. For optimal performances, use 16 bit color depth in the guest and the host OS. (This card was the default before QEMU 2.2) std Standard VGA card with Bochs VBE extensions. If your guest OS supports the VESA 2.0 VBE extensions (e.g. Windows XP) and if you want to use high resolution modes (>= 1280x1024x16) then you should use this option. (This card is the default since QEMU 2.2) Everything is in the documentation ;-) Thomas