Ubuntu 17.10 VNC 服务器

Ubuntu 17.10 VNC 服务器

我正在寻找一个适用于 Ubuntu 的 vnc 服务器,只需进行最少的设置。我尝试了几乎所有论坛程序,包括 vino、x11vnc、tightvnc、realvnc。我只需要一个万无一失的 vnc 设置程序。我想在启动时运行等等,但此时我只想要一些可以正常工作的东西。

我能想到的导致我无法正常工作的因素太多了,包括显示管理器、桌面(gnome/unity/etc[我知道 17.10 使用 gnome,但我还没有验证这一点])(此外,我想保留默认桌面,无论它是什么)、关于 wayland 和 x11(没有 xauthority)等

答案1

这是我使用 x11vnc 时得到的效果:

因此显然 Ubuntu 17.10 使用 GDM3 和/或 Wayland 显示管理器,因此存在与 Wayland 的一些兼容性问题。

请执行下列操作:

apt-get install x11vnc
sudo x11vnc -storepasswd
<Enter Password; Saves to ~/.vnc/passwd>

xauth
<Generates .Xauthority file at /run/user/1000/gdm/Xauthority>

nano /etc/gdm3/custom.conf
<Uncomment/Change line to "WaylandEnable=true">

<Logout -> click gear -> select the "Xorg" option>
<Login>

x11vnc -auth guess -forever -loop -noxdamage -repeat -rfbauth ~/.vnc/passwd -rfbport 5900 -shared
<Or whatever you need>

瞧...现在来自动化一些事情

相关内容