发布时间:2002-07-01 17:40 来源:未知
首先,了解下老式Framebuffer的resolution settings
复制代码代码如下:
ubuntu 9.10 使用了最新的grub2,启动参数好像有不少变动,虚拟机的分辨率调整:
方法1,还是原来的vga=788
复制代码代码如下:
### BEGIN /etc/grub.d/10_linux ###
menuentry “Ubuntu, Linux 2.6.31-14-generic-pae” {
recordfail=1
if [ -n ${have_grubenv} ]; then save_env recordfail; fi
set quiet=1
insmod ext2
set root=(hd0,1)
search –no-floppy –fs-uuid –set 9a441a57-5a71-4800-b46d-2e4c1cec6dee
set gfxpayload=800×600x16
linux /boot/vmlinuz-2.6.31-14-generic-pae root=UUID=9a441a57-5a71-4800-b46d-2e4c1cec6dee ro quiet splash
initrd /boot/initrd.img-2.6.31-14-generic-pae
}