Virtualbox下修改CentOS分辨率

Virtualbox下修改CentOS分辨率

Virtualbox下安装CentOS7后先安装增强功能,要修改分辨率,可以修改/etc/X11/xorg.config配置文件,但CentOS 7版本默认情况下没有xorg.config文件。
解决方法:

获得管理员权限:
su root

使用管理员身份运行:
Xorg :1 -configure

把xorg.conf复制到/etc/X11/目录下:
cp /root/xorg.conf.new /etc/X11/xorg.conf

接下来就可以用vi编辑文件了:
vi /etc/X111/xorg.conf

在文件中找到这一段:

Section "Screen"
	...
	SubSection "Display"
		Viewport	0 0
		Depth      24
	EndSubSection
	...
EndSection

添加字段Modes,增加你要的分辨率,800x600要保留。

Section "Screen"
	...
	SubSection "Display"
		Viewport	0 0
		Depth      24
		Modes "800x600" "1600x900"
	EndSubSection
	...
EndSection

按ESC后 ,输入:wq保存退出vim编辑器。
重启后更改分辨率,完成。


图形界面系统修改CentOS分辨率

应用程序-系统工具-设置-设备-Display-分辨率。
设置-设备-Mouse可以修改鼠标速度。

你可能感兴趣的:(CentOS)