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.
John
我在安装驱动后刷新率虽然正常了,但是能设置的分辨率却很少,比如没有 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 (要拖动画面才能看到桌面的地方部分),那么可以试试 xorg.conf 里搜索 “HorizSync 28-60”,把最高的数值改成 80,我就是这样修改后才正常显示 1280x1024 画面的……如果重启后无法再进入桌面,可以在最初的 GRUB 界面下选择第 2 项(按 E 是编辑,按 B 是运行),会进入单用户模式的字符界面,把刚才备份的文件覆盖回来就行了;cp /etc/X11/xorg.conf-backup /etc/X11/xorg.conf -i
十八年前 Unknown · Unknown里的
是
开
"1280x1024" "1024x768" "800x600"
"640x480",写在最前面的是默认设置,如果重启后发现分辨率提高了,却不能在一个屏幕内显示
在