本地主机设置:
a) 编辑本地主机sshd的配置文件 /etc/ssh/sshd_config

 X11Forwarding yes
 X11UseLocalhost no

b) 重新启动sshd服务让它生效

systemctl restart sshd

目标主机设置:
a) 编辑目标主机的sshd配置文件 /etc/ssh/sshd_config
配置转发参数为yes

X11Forwarding yes
X11DisplayOffset 10

b) 重启ssh 服务

sudo service sshd restart

判断成功方法:

ssh -X  username@use_ip

如果登陆时输出的文本信息中不包含X11 forwarding request failed on channel 0则说明成功
可通过echo $DISPLAY 查看当前DISPLAY配置

可能问题及解决方案:
在运行一些软件图形界面时,命令行中出现如下报错:

GLFW error 65543: GLX: Failed to create context: GLXBadFBConfig
Unable to create GLFW window

解决方法:export LIBGL_ALWAYS_INDIRECT=0

参考链接:
https://blog.csdn.net/weixin_43424368/article/details/107582668
https://blog.csdn.net/weixin_36217616/article/details/116855118
https://stackoverflow.com/questions/66497147/cant-run-opengl-on-wsl2

Logo

更多推荐