现在在用一个20寸的厦新电视机在做我的显示器,它是宽屏的,最高可以支持1344x768的分辨率。可是装了Fedora 14以后,只能发现最高支持的分辨率是1024x768。字体看起来都是扁扁的,很不爽!
得想个法把这个分辨率调整过来:
1) 打开一个Terminal窗口,切换到root身份后运行
Xorg -configure :1
这个命令会在/root下生成一个叫xorg.conf.new的文件,我们运行以下命令把它移到/etc/X11下
mv /root/xorg.conf.new /etc/X11/xorg.conf
2) reboot系统
3)在终端中输入 gtf 1344 768 60 -x 命令, 这样就会在终端中显示一些内容. 类似下面的:
# 1344x768 @ 60.00 Hz (GTF) hsync: 47.70 kHz; pclk: 83.95 MHz
Modeline "1344x768_60.00" 83.95 1344 1408 1552 1760 768 769 772 795 -HSync +Vsync
把它复制到
/etc/X11/xorg.conf中的[Moniter]段中,复制后的文件中[Moniter]段如下:
Section "Monitor"
Identifier "Monitor0"
VendorName "Monitor Vendor"
ModelName "Monitor Model"
# 1344x768 @ 60.00 Hz (GTF) hsync: 47.70 kHz; pclk: 83.95 MHz
Modeline "1344x768_60.00" 83.95 1344 1408 1552 1760 768 769 772 795 -HSync +Vsync
EndSection
4) reboot系统后就会在System->Preferences->Moniters中发现1344x768的选项啦!
5) 收工!