Xshell使用

由于希望使用Linux服务器上的可视化工具,使用X11对Linux服务器的GUI进行转发。

参考博客:https://www.cnblogs.com/tsfh/p/9022170.html

https://www.cnblogs.com/xuyaowen/p/ssh-X11forward.html

Step 1.

服务器: sudo vim /etc/ssh/sshd_config 修改以下配置,如果在配置文件里面没有找到,就直接添加到文件末尾即可,最后保存退出:wq

1
2
3
4
5
X11Forwarding yes

X11DisplayOffset 10

X11UseLocalhost yes

服务器端修改完成后需要执行命令重启sshd服务

1
sudo systemctl restart sshd.service

Step 2.

Windows上安装Putty和Xming。启动 XLaunch之后,记住display number,默认值为0。 之后打开putty,点击Connection->SHH->AUTH->X11,勾选enbale X11,x display location 填写localhost:<Display Number>,例如localhost:0

Step 3.

使用ssh通过putty连接服务器。尝试xclock,之后出现时钟图标。

0%