残念な解像度を設定しなおす(再挑戦!)


まずは自分の持っているモニターのスペックをググって、
水平、垂直の周波数を調べる

[root@cent6-2 X11]# cat /home/hirasawa/G2420HD-spec.txt 
水平周波数 	24 - 83 (KHz)
垂直周波数 	50 - 76 (Hz)
[root@cent6-2 X11]# 

んで、
/etc/X11/xorg.confを(今時のディストリの場合、存在しないとおもうので
新規)作成する。
こんな感じで(あとで修正するかも)


ここらへんがキーワード
xrandr configure crtc 0 failed
かな?

ログをみるなら、ここらへん

にて grep DDCとかやってみるとなにか分かるかもしらない。

[hirasawa@cent6-2 ~]$ cd /var/log/Xorg.
Xorg.0.log      Xorg.0.log.old  Xorg.1.log      Xorg.9.log

参考文献

Ubuntu日本語フォーラム / 10.04 にしたら 低解像度へ
https://forums.ubuntulinux.jp/viewtopic.php?id=8317

を参照して

最初の第一歩としては

[root@cent6-2 X11]# cat xorg.conf
Section "Monitor"
    Identifier    "Configured Monitor"
    Horizsync    24-83
    Vertrefresh    50.0-76.0
EndSection

Section "Screen"
    Identifier    "Default Screen"
    Monitor        "Configured Monitor"
    SubSection    "Display"
        #Depth    16
        Modes    "1280x1024"  "1024x768"  "800x480"  "640x480"
    EndSubSection
EndSection

ここを出発点にすると吉のようですね。
というか、やっぱり基本に戻れ!ってのが結論かな?

残念な解像度から脱出することができました

[root@cent6-2 X11]# xrandr
Screen 0: minimum 640 x 480, current 1280 x 1024, maximum 1280 x 1024
default connected 1280x1024+0+0 0mm x 0mm
   1280x1024      75.0     60.0* 
   1024x768       75.0     70.0     60.0  
   640x480        75.0     73.0     60.0  
   1280x960       60.0  
   1280x800       75.0     60.0  
   1152x864       75.0  
   1280x768       75.0     60.0  
   800x600        75.0     72.0     60.0     56.0  
   848x480        60.0  
[root@cent6-2 X11]#