VirtualBox中Ubuntu全屏显示设置

时间:2022-06-01 20:47:40

    (说明:XP中屏幕分辨率1280*800,但装在VirtualBox的Ubuntu9.04的分辨率只能设置到800*600;即使将虚拟机全屏,Ubuntu也只是在屏幕正中间的一块显示,不是所谓的Ubuntu系统本身的全屏)

    下面是我整理的网上介绍的方法:
    1.安装make gcc lib等:$sudo apt-get install build-essential
    2.安装module-assistant:$sudo apt-get install module-assistant
    3.运行:$sudo m-a prepare
    4.安装VirtualBox工具:
       (1)使用“虚拟光驱”加载VirtualBox安装目录中的“VBoxGuestAdditions.iso”;
       (2)切换至光驱目录:$cd /cdrom
       (3)终端运行命令:$sudo ./VBoxLinuxAdditions-x86.run
       (4)修改VBox在Ubuntu中的设置:$sudo gedit /etc/X11/xorg.conf
            Section "Device"
                Identifier "Configured Video Device"
                 Driver "vboxvideo"
            EndSection
            Section "Monitor"
                Identifier "Configured Monitor"
            EndSection
            Section "Screen"
                 Identifier "Default Screen"
                 Monitor "Configured Monitor"
                 Device "Configured Video Device"
                 DefaultDepth 24                 #我这里颜色质量只能开到24
                 SubSection "Display"
                      Modes "1280x800" "800x600" #按屏幕需要改就可以了
                 EndSubSection
             EndSection

    5.重启Ubuntu,设置分辨率为1280*800

    所有的操作都能行得通,但是最后“显示”属性设置“分辨率”下拉菜单里还是没有1280*800,也就是此方法我还没验证成功。

    踌躇中......