Linux2010. 2. 16. 14:25
FC6을 설치하는데(젠장!)
모니터를 HD Ready 모니터에 연결했더니 EDID 정보에 의해서 1920x1080으로 설정이 되었나보다.
아무튼, 이런 이유로 모니터에서는 out of range 에러를 뱉어내고..
결국에는 수작업으로 해상도를 변경했다.

아무튼, FC6의 경우
/etc/X11/xorg.conf 경로에 파일이 존재하며 (내용은 다를수도 있지만)
# Xorg configuration created by pyxf86config

Section "ServerLayout"
        Identifier     "Default Layout"
        Screen      0  "Screen0" 0 0
        InputDevice    "Keyboard0" "CoreKeyboard"
        InputDevice    "Synaptics" "CorePointer"
EndSection

Section "InputDevice"
        Identifier  "Keyboard0"
        Driver      "kbd"
        Option      "XkbModel" "pc105"
        Option      "XkbLayout" "us"
EndSection

Section "InputDevice"
        Identifier  "Synaptics"
        Driver      "synaptics"
        Option      "Device" "/dev/input/mice"
        Option      "Protocol" "auto-dev"
        Option      "Emulate3Buttons" "yes"
EndSection

Section "Device"
        Identifier  "Videocard0"
        Driver      "i810"
EndSection

Section "Screen"
        Identifier "Screen0"
        Device     "Videocard0"
        DefaultDepth     24
        SubSection "Display"
                Modes     "1024x768"
                Viewport   0 0
                Depth     24
        EndSubSection
EndSection

Screen 섹션에
Display 보조섹션에 Modes 를 추가하여 원하는 해상도로 변경해주면 된다.

[링크 : http://kldp.org/node/22644]
Posted by 구차니