在线 ubuntu 主机中的远程桌面

在线 ubuntu 主机中的远程桌面

我在一些网站(如 codeanywhere 或 codeenvy)有免费主机。

所以想知道我是否可以通过图形版本访问这个 ubuntu 服务器。

我尝试安装 紧密型VNC服务器 在 codeanywhere 中运行它时出现此错误:

Wrong type or access mode of /home/ubuntu/.vnc

在此处输入图片描述

任何建议将不胜感激。 

谢谢。

答案1

为什么不使用这个..从德语网站尝试..翻译..

sudo apt-get install x11vnc  

sudo x11vnc -storepasswd KENNWORT /etc/x11vnc.pass  

并使其永久化:

sudo nano /etc/systemd/system/x11vnc.service

包含这个:

[单元]
描述=x11vnc-Server

[服务]
ExecStart=/usr/bin/x11vnc -auth guess -forever -localhost -loop -noxdamage -o /var/log/x11vnc.log -rfbauth /etc/x11vnc.pass -rfbport 5900 -shared

[安装]
WantedBy=multi-user.target

保存后退出 nano 文本编辑器,运行

sudo systemctl enable  x11vnc.service

然后重新启动。

这是来自一个德国网站, https://wiki.ubuntuusers.de/VNC/#VNC-Server-bei-jedem-Bootvorgang-starten

你好,bernd

相关内容