首先,了解下老式Framebuffer的resolution settings
# FRAMEBUFFER RESOLUTION SETTINGS
# +————————————————-+
# | 640×480 800×600 1024×768 1280×1024
# —-+——————————————–
# 256 | 0×301=769 0×303=771 0×305=773 0×307=775
# 32K | 0×310=784 0×313=787 0×316=790 0×319=793
# 64K | 0×311=785 0×314=788 0×317=791 0×31A=794
# 16M | 0×312=786 0×315=789 0×318=792 0×31B=795
# +————————————————-+
ubuntu 9.10 使用了最新的grub2,啟動參數(shù)好像有不少變動,虛擬機(jī)的分辨率調(diào)整:
方法1,還是原來的vga=788
編輯 /etc/default/grub ,中的GRUB_CMDLINE_LINUX=”vga=788″
保存以后運(yùn)行update-grub
但是這樣子會顯示
vga=788 is deprecated and asks me to use “set gfxpayload=800×600x16;800×600″ before the linux line.
意思就是vga參數(shù)已經(jīng)是建議不要使用了,要用另外一種方法:
方法2:
編輯/boot/grub/grub.cfg
找到引導(dǎo)linux那幾行
增加 set gfxpayload=800×600x16,注意不要帶分號,如下:
### 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
}