1、Back up xorg.conf:
sudo cp /etc/X11/xorg.conf /etc/X11/xorg.conf_backup
2、Add one resolution:
sudo gedit /etc/X11/xorg.conf
3、Find “Section “Monitor””;
4、Change “HorizSync” and “VertRefresh” like:
Section "Monitor" Identifier "Generic Monitor" Option "DPMS" HorizSync 28-90 (After changing) VertRefresh 43-70 (After changing)
5、Find “Section “Screen”” and change. For my notebook, I change like:
SubSection "Display" Section "Screen" Identifier "Default Screen" Device "Intel Corporation Mobile Integrated Graphics Controller" Monitor "Generic Monitor" DefaultDepth 24 SubSection "Display" Depth 1 Modes "1440x900" EndSubSection SubSection "Display" Depth 4 Modes "1440x900" EndSubSection SubSection "Display" Depth 8 Modes "1440x900" EndSubSection SubSection "Display" Depth 15 Modes "1440x900" EndSubSection SubSection "Display" Depth 16 Modes "1440x900" EndSubSection SubSection "Display" Depth 24 Modes "1440x900" EndSubSection EndSection
Restart…
Reference
1. http://bbs.linuxunion.net/showthread.php?t=71.
2. http://www.hiweed.com/node/474.
3. http://dengpeng.name/blog/2006/10/26/ubuntu-610-edgy-install.
4.http://dexteryy.blogspot.com/2006/12/ubuntu_23.html.
我在安装驱动后刷新率虽然正常了,但是能设置的分辨率却很少,比如没有1280X1024的选项,需要修改配置文件;sudo gedit /etc/X11/xorg.conf 这
里的gedit是一个GNOME自带的文本编辑器,相当于增强版的记事本,还支持标签,很好用,如果你在某篇不厚道的新手文档或书籍里看到编辑文本的命令
是VI,比如sudo vi /etc/X11/xorg.conf,记得把VI改成gedit——因为新手不可能在短时间内习惯VI的操作。编辑xorg.conf 之前一定要记得先备份,修改其他任何系统文件前也都要这样做,没有这个习惯的话,出错后是很难恢复的,备份的命令;cp /etc/X11/xorg.conf /etc/X11/xorg.conf-backupcp就是复制,备份文件的名字可以随便写,在LINUX里保存文本的时候可以随便起后缀名(也可以不写),系统在打开文件时并不是通过后缀名来判断启动方式,而是根据文档开头的内容。打
开xorg.conf后,可以看到里面都是跟显示有关的设置,找到Section "Screen",在下面的分辨率里加入你想要的,比如Modes
"1280x1024" "1024x768" "800x600"
"640x480",写在最前面的是默认设置,如果重启后发现分辨率提高了,却不能在一个屏幕内显示(要拖动画面才能看到桌面的地方部分),那么可以试试
在xorg.conf里搜索“HorizSync 28-60”,把最高的数值改成80,我就是这样修改后才正常显示1280x1024画面的……如果重启后无法再进入桌面,可以在最初的GRUB界面下选择第2项(按E是编辑,按B是运行),会进入单用户模式的字符界面,把刚才备份的文件覆盖回来就行了;cp /etc/X11/xorg.conf-backup /etc/X11/xorg.conf -i