ubuntu设置分辨率

我现在用的就是UBUNTU9.10的..


Ubuntu 9.10版本的显示分辨率智能识别依然不佳,在分辨率显示选项中找不到我想要的 1280x1024。
我们可以自己修改一下配置文件来达到
因为9.10的 /etc/X11 目录已经没有 xorg.conf 这个文件(如果已经有的话记得先备份一个,以备万一)
我们可以自己创建一个
sudo touch /etc/X11/xorg.conf

然后填写内容
sudo gedit /etc/X11/xorg.conf

把下面的内容复制进入xorg.conf中
Section "Monitor"
Identifier "Configured Monitor"
Modeline "1280x1024_60.00"  109.00  1280 1368 1496 1712  1024 1027 1034 1063 -hsync +vsync
Option "PreferredMode" "1280x1024_60.00"
EndSection

Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
EndSection

Section "Device"
Identifier "Configured Video Device"
EndSection

其中标红色的内容是需要根据你显示器来修改的
比如想设置成1280x1024分辨率,那么再打开一个终端输入cvt 1280 1024,查看显示的参数
然后把红字部分替换成你的参数就可以了,保存后去系统首选项那里选择你刚设置的分别率,重启…… 
原文地址:https://www.cnblogs.com/baizx/p/1703957.html