补充 通过 SSH 隧道进行连接.

Signed-off-by: ithink.chan <chenyang@autoai.com>
This commit is contained in:
ithink.chan 2019-11-13 11:59:28 +08:00
parent 0f1064ebf5
commit 7674e9ebed
1 changed files with 15 additions and 1 deletions

View File

@ -27,7 +27,7 @@ pacman -S tigervnc
vncserver vncserver
``` ```
第一次使用需要按提示输入密码,开启后会提示一个 \<num\> 号。如果要关闭 vnc 可使用如下命令: 第一次使用需要按提示输入密码,开启后会提示一个 \<num\> 号num 与 VNC 的默认监听端口有一定对应关系,一般 num=0 时 VNC 默认监听 5900num=1 时 VNC 默认监听 5901以此类推。如果要关闭 vnc 可使用如下命令:
```sh ```sh
vncserver -kill :<num> vncserver -kill :<num>
@ -58,6 +58,20 @@ exec dbus-launch xfce4-session
然后键入密码即可。 然后键入密码即可。
## 通过 SSH 隧道进行连接
在服务器端:
```sh
vncserver -localhost
```
在客户端:
```sh
ssh <user name>@<vnc server ip> -L <local port>:localhost:<vnc port>
```
## 参考资料 ## 参考资料
[Archlinux Wiki TigerVNC](https://wiki.archlinux.org/index.php/TigerVNC) [Archlinux Wiki TigerVNC](https://wiki.archlinux.org/index.php/TigerVNC)