우분투 서버 사용 시 모니터 없어서 검은 화면이 보이곤 하는데 아래를 통해 해결할 수 있다.

 

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

$ sudo vim /etc/X11/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 "2560x1440"
    EndSubSection
EndSection

 

'Memo' 카테고리의 다른 글

2021년 회고록 그리고 2022년  (0) 2021.12.31
VMware Workstation 16에서 macOS BigSur 설치하기 (AMD버전)  (0) 2021.02.24
우분투 초기 환경 구축  (2) 2020.12.13
pypy3 Install  (0) 2020.12.13
Hyperledger Indy SDK Build (삽질중)  (0) 2020.12.01