You are not logged in.
qemu-kvm by default only allows a maximum resolution of 1024x768.
Is it possible to make it support 1600x900, 1920x1080, or any size we want?
I tried with -vga vmware, but qemu-kvm crashed (segmentation fault) after logging in. The host is Arch x86_64, and the guest is Ubuntu 12.04 LTS i386.
The weird thing is that it doesn't crash after X starts, but after logging in (i.e. the login manager works well)...
.
Offline
Not really a solution but maybe a hint:
I use
-vga std
in qemu-kvm on Arch x86_64 and have set 1440x900 and higher resolutions in Windows XP and 7 guests. Works fine. I remember having problems with resolution in Ubuntu guests but that was more than a year ago. I guess I would try to setup an Arch Linux guest nowadays to see if higher resolutions still cause problems with automatic Xorg configuration on a modern X server in the guest.
Offline
You might also want to take a look at spice
Offline
Same here. Crashes right after login. Host arch x86_64, guest ubuntu LTS latest.
Offline
My workaround (applicable for linux hosts) is as follows: I start the guest (without any -vga option). I log into the guest from the host using ssh -X. Then I can start any graphical program on the guest via the ssh shell and it is displayed within the host X windows system and the host screen configuration applies.
Offline
To add support for 1600x900:
Apply this SVGA patch, listing the resolution wanted.
Compile the BIOS too:
ARFLAGS=rv make V=1 &&
make -C roms seavgabios
And start qemu with:
-display sdl -vga std
Last edited by brebs (2014-10-13 14:03:04)
Offline