Skip to content

Xserver-xorg-video-dummy

How to install

$ sudo apt-get install xserver-xorg-video-dummy

xorg.conf example

Profile(/etc/X11/xorg.conf)을 아래와 같이 수정한다.

Section "Monitor"
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "Unknown"
    HorizSync       28.0 - 33.0
    VertRefresh     43.0 - 72.0
    Option         "DPMS"
    ModeLine       "1920x1080"   148.35   1920 2008 2052 2200   1080 1084 1089 1125 +hsync +vsync
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    Option         "ConnectedMonitor" "DFP-1"
    Option         "IgnoreEDID" "TRUE"
    Option         "UseEDID" "FALSE"
    Option         "ModeValidation" "NoEdidModes"
    VendorName     "NVIDIA Corporation"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    Option         "DynamicTwinView" "false"
    SubSection     "Display"
        Depth       24
        Modes       "1920x1080"
    EndSubSection
EndSection

Xorg 재시작 (Ubuntu는 lightdm)

$ sudo service lightdm restart 

Tips

  • xorg.conf 파일은 그래픽카드 추가시 재생성되는 파일이므로 자동으로 원상복구 되는 경우가 있음
  • Section "Monitor"HorizSyncVertRefresh 항목을 삭제 시 모니터의 기본 해상도로 설정됨. 만약 설정후 화면이 너무 작다면 해당 방법 시도.
  • 참고로 DPMS는 Display Power Management Signaling의 약자이다.

See also