Setup vnc
LinuxMint 安装 TigerVNC Server¶
1. 安装 tigervnc¶
```shell script sudo apt install tigervnc-standalone-server tigervnc-common
Text Only | |
---|---|
3. 桌面环境设置¶
LinuxMint 使用的是 Cinnamon 桌面,所以需要对 ~/.vnc/xstartup
进行如下配置(注意最后一行):
Text Only | |
---|---|
- kde:
startkde &
- gnome:
gnome-session &
- xfce:
startxfce4 &
- lxde:
lxsession &
配置好后,重启vnc服务,用 VNC Viewer 之类的软件输入ip地址和端口号就可以连接了~。
如果连接的时候提示:“the connection was refused by the computer”,可能是因为 vnc 服务器只允许了 127.0.0.1 的连接, 在
/etc/vnc.conf
添加一行$localhost = "no";
然后重启服务可以解决这个问题。