在virtualBox中使用Centos6.4如何自定义分辨率
1.进入/etc/X11目录下,如果没有xorg.conf文件就新建该文件。编辑该文件,内容如下:
Section "Device"
BoardName "VirtualBox Graphics"
Driver "vboxvideo"
Identifier "Device[0]"
VendorName "Oracle Corporation"
EndSection
Section "Screen"
SubSection "Display"
Depth 24
Modes "1440x900"
EndSubSection
Device "Device[0]"
Identifier "Screen[0]"
Monitor "Monitor[0]"
EndSection
其中在Modes 后设置自己想要的分辨率,我在这里设置为适应我屏幕的最佳分辨率"1440*900",如果设置多个分辨率,可以以空格分开
2.重启机器后就可以选择自己设置的分辨率了