좋아, 그래서 나는이 문제에 부딪 쳤고 이것이 도움이되기를 바랍니다. 나는 현재 Ubuntu 18.04를 실행 하고 있기 때문에 Vino VNC Server를 실행하고 있기를 바랍니다 . 헤드리스 서버에 VNC를 설치해야하는 것과 같은 문제가있었습니다.
먼저 더미 드라이버를 설치하십시오.
sudo apt-get install xserver-xorg-video-dummy
드라이버가 설치됩니다 후 그 다음, 새로 만들기 xorg.conf
에서 /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 "1600x900"
EndSubSection
EndSection
그런 다음 시스템을 재부팅하면 작동합니다! 나를 위해 일했지만 잘못된/usr/share/X11/xorg.conf.d/xorg.conf
것으로 판명 했습니다.