다음으로 생성된 가상 X 세션을 어떻게 열 수 있나요?xserver-xorg-비디오-가상다른 X 세션에서 디스플레이 :0이 생성되었다고 가정해 보겠습니다.
세션은 다음 명령을 사용하여 생성됩니다.
$ sudo X :1 -config dummy-1024x768.conf
dummy-1024x768.conf 파일의 내용:
Section "Monitor"
Identifier "Monitor0"
HorizSync 28.0-80.0
VertRefresh 48.0-75.0
Modeline "1024x768_60.00" 64.11 1024 1080 1184 1344 768 769 772 795 -HSync +Vsync
EndSection
Section "Device"
Identifier "Card0"
Driver "dummy"
VideoRam 32000
EndSection
Section "Screen"
DefaultDepth 24
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
SubSection "Display"
Depth 24
Modes "1024x768_60.00"
EndSubSection
EndSection
거기에서 프로그램을 시작하십시오.
$ DISPLAY=:1 x-session-manager
나중에 VNC를 사용하여 다음 명령으로 액세스할 수 있다는 것을 알고 있습니다.
$ x11vnc -rfbport 0 -viewonly -forever -nolookup -nopw -quiet -unixsock ~/vncsock1 -display :1
$ ssvncviewer -encodings Raw -compresslevel 1 -quality 9 -nojpeg -nocursorshape unix=~/vncsock1
그러나 소켓을 사용해도 너무 느립니다.
이와 같은 여러 사용자 정의 가상 X 세션을 여는 또 다른 빠른 방법이 있습니까?