[Study]/[Linux & Unix]2009. 9. 25. 13:56
먼저 vi /etc/X11/xorg.conf 파일을 open한후 아래의 항목을 찾아 수정해준다.

 Section "Device"
     Identifier  "Configured Video Device"
     Option      "UseFBDev"      "true"
 EndSection
 
 Section "Monitor"
     Identifier  "Configured Monitor"
 EndSection
 
 Section "Screen"
     Identifier  "Default Screen"
     Device      "VirtualBox graphics card"
     Monitor     "Generic Monitor"
    DefaultDepth    24
     SubSection  "Display"
        Depth   24
        Modes   "1600x1200" "1280x1024" "1024x768"
     EndSubSection
 EndSection


터미널에서의 해상도 설정및 주사율 설정
$ cvt 1368 676 60
# 1368x676 59.74 Hz (CVT) hsync: 42.00 kHz; pclk: 74.25 MHz
Modeline "1368x676_60.00"   74.25  1368 1432 1568 1768  676 679 689 703 -hsync +vsync

해상도 자동검색 끄기 방법
xorg.conf 파일에서
Section "Device"
Option "modeValidation" "NoDFPNativeResolutionCheck"

Posted by xiasonic