服务器系统:Ubuntu
1. 准备工作:
一般这两个环境已经配置好了,可以直接跳过。
- 服务器:
sudo apt-get install openssh-server
- 客户端:
sudo apt-get install openssh-client
2. 服务器配置
sudo vi /etc/ssh/sshd_config
如何使用vi操作文档请自行上网查询
AllowAgentForwarding yes
#AllowTcpForwarding yes
#GatewayPorts no
X11Forwarding yes
X11DisplayOffset 10
X11UseLocalhost no
#PermitTTY yes
PrintMotd no
PrintLastLog yes
TCPKeepAlive yes
将X11Forwarding
为yes, 并删掉一些参数前的#
以取消注释。
保存修改后,在命令行运行 sudo service ssh restart
3. 客户端
客户端ssh -X username@host_IP
用以连接服务器.
4.测试
之后就可以在服务器上使用python进行测试
import cv2
img = cv2.imread('demo.jpeg')
cv2.imshow('img', img)
cv2.waitKey()
如果出现图片说明成功了。
image.png
Reference
https://blog.csdn.net/u014303046/article/details/78752909
网友评论