首页 > 系统 > Ubuntu > 正文

解决VirtualBox安装Ubuntu全屏问题

2024-06-28 13:08:21
字体:
来源:转载
供稿:网友

在Virtualbox在XP下虚拟Ubuntu 8.04,发现ubuntu作为客机的分辨率只能调到800×600,经过一番检索+摸索,搞定,现整理如下:

    1.安装Vboxlinuxadditions(选“设备”-“安装虚拟电脑工具包”) ,自动在Ubuntu下安装虚拟光驱,然后运行里面的 ./VBoxLinuxAdditions.run
    2.修改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 16 #我这里颜色质量只能开到16
  SubSection "Display"
     Modes "1048x768" #按屏幕需要改就可以了
  EndSubSection
EndSection
 

    3.重启Ubuntu,然后分辨率就可以设置成1024×768了。


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表