xinzhi
2011-03-22 09:22:52 +08:00
终端运行:
cvt 1920 1080 60
得到一串参数:
# 1920x1080 59.96 Hz (CVT 2.07M9) hsync: 67.16 kHz; pclk: 173.00 MHz
Modeline "1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync
上面就是1920x1080分辨率的参数,命令cvt 1920 1080 60中的60是刷新率,你可以在Windows正常使用的情况下,看看显示屏设置菜单里面的刷新率等参数,一般不是很重要的,刷新率对液晶无效。
最终加入/etc/X11/xorg.conf的代码如:
Section "Monitor"
Identifier "Configured Monitor"
# 1920x1080 59.96 Hz (CVT 2.07M9) hsync: 67.16 kHz; pclk: 173.00 MHz
Modeline "1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync
Option "PreferredMode" "1920x1080_60.00"
EndSection
Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
EndSection
Section "Device"
Identifier "Configured Video Device"
EndSection
保持后登出或者重启,显示器设置里面应该有1920×1080的选项了吧。