0. 필요사항

  가. 팀뷰어로 원격제어할 경우 모니터가 없을 경우 화면이 검게 표시됨

  나. 가상 화면을 만들어서 가상 화면을 디스플레이함

  다. 가상 모니터를 만들 경우 실제 모니터를 연결해도 표시가 안됨

    1) xorg.conf를 삭제, 이동 또는 이름을 변경하면 됨(ex:xorg.conf.bak)


1. 가상 모니터 드라이버 설치

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

  나. 아래의 파일을 xorg.conf 로 생성

Section "Device"
    Identifier  "Configured Video Device"
    Driver      "dummy"
EndSection
 
Section "Monitor"
    Identifier  "Configured Monitor"
    HorizSync 31.5-48.5
    VertRefresh 50-70
EndSection
 
Section "Screen"
    Identifier  "Default Screen"
    Monitor     "Configured Monitor"
    Device      "Configured Video Device"
    DefaultDepth 24
    SubSection "Display"
    Depth 24
    Modes "1024x800"
    EndSubSection
EndSection
cs

  다. $ cp xorg.conf /usr/share/X11/xorg.conf.d

  라. 재부팅

AND