現在在用一個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) 收工!