关于程序员:vscode-remote-ssh实现x11转发

26次阅读

共计 298 个字符,预计需要花费 1 分钟才能阅读完成。

什么鬼 #
不满足于外网应用 vscode ssh remote 进行命令行开发,甚至还想转发图形界面,如 imshow

怎么搞 #
这里分两种状况,假如 remote server 都是 linux 零碎,client 零碎分为

Windows#
能够参考我之前的文章 VScode 近程连贯 Docker 容器实现 X11 转发

Linux#
间接在~/.ssh/config 中对应的 Host 我的项目中退出 ForwardX11 yes
同时反对 ProxyJump 应用

Host remote
HostName 192.168.1.123
User develop
ProxyJump proxy@xxx.xxx.xxx.xxx:23333
ForwardX11 yes

正文完
 0