FedoraCore6 解像度が変わらない
わたしも良く理解していませんが、とりあえず次のようなことをするとなんとかうまくいきました。
<ハード>
モニタ:Sony Multiscan G200
VGA: intel on board 825G
<問題>
FedoraCore5では、解像度を"1024x768"に変更できたのに、FedoraCore6ではできない。
モニタをメニューから指定しても、保存されない。
<解決>
xorg.confを編集してみる。
<ファイル>
/etc/X11/xorg.conf
<モニタセクション>
Section "Monitor"
Identifier "Monitor0"
ModelName "Monitor 1024x768"
HorizSync 30.0 - 96.0 <ーーこの数字はモニタの仕様書から
VertRefresh 48.0 - 120.0 <ーーこの数字はモニタの仕様書から
Option "dpms"
EndSection
Section "Device"
Identifier "Videocard0"
Driver "i810"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Videocard0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24 <ーー これは色の数 2の24乗 色
Modes "1024x768" <ーー ここで解像度を指定
EndSubSection
EndSection
<コメント>
どうやら、HorizontalとVerticalのリフレッシュレートでどの解像度が可能か計算しているらいし。どこかに書いてあった。なので、この数値を正しい数値にする必要があります。