背景 :
我使用的是Ubuntu 12.04
带X11VNC
服务器的。通常我不会将显示器连接到这台电脑。所以它有一些分辨率问题。经过几天的研究,我发现这个答案并且运行良好。(将以下代码粘贴到终端)
cat <<EOF >/etc/X11/xorg.conf
Section "Device"
Identifier "Default Device"
Option "NoLogo" "True"
EndSection
Section "Monitor"
Identifier "Configured Monitor"
EndSection
Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Default Device"
SubSection "Display"
Depth 24
Virtual 1280 720
EndSubSection
EndSection
EOF
sudo chmod 644 /etc/X11/xorg.conf
问题:
现在,当我通过访问时,它可以正常工作VNC
,但是当我将显示器连接到该机器时,有时它会转到分辨率(640*480)。
我需要使用或不使用显示器来访问这台机器。我做错了什么?