VNC 접속 시 검은 화면만 나오는 경우

Peloton·2023년 10월 30일
0
post-thumbnail

보통 이러한 경우 모니터는 연결하지 않고 vnc를 이용하거나, 연결했으나 정상적으로 출력이 되고있지 않은 상황에서 vnc를 접속하면 검은화면이 나옵니다.
모니터를 연결하지 않고, 사용하는 경우 아래의 과정에 따라 설치/설정하면 해결됩니다.

dummy Driver 설치

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

xorg.conf 파일 생성

  • 파일 생성 및 편집

    vi /usr/share/X11/xorg.conf.d/xorg.conf
  • 내용 입력

Section "Device"
    Identifier  "Configured Video Device"
    Driver      "dummy"
    # Default is 4MiB, this sets it to 16MiB
    VideoRam    16384
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

Restart

  • OS를 재시작하거나, X Session을 로그아웃/로그인 합니다.
  • 이 후 다시 VNC Client로 접속해봅니다.

References

profile
Software Engineeeeer

0개의 댓글