由于我使用的是 Ubuntu,我将尝试在远程桌面上通过 ssh 进行 X11 转发。但不幸的是,它不起作用。在我执行此操作之前:
ssh -X username@hostname
例如:
gedit
但是现在在 Ubuntu 15.10 下它不起作用,并且我收到以下消息:
$ gedit Failed to connect to **Mir**: Failed to connect to server socket: No files or folders of this type Unable to init server: Unable to connect: Connection refused
(gedit:2492): Gtk-WARNING **: cannot open display:
所以我的问题是如何通过 ssh 进行 X11 转发?
答案1
您需要在 SSH 服务器配置中启用 X-Forwarding,
/etc/ssh/sshd_config
它看起来应该是这样的:
X11Forwarding Yes
取消注释此行之前的所有注释。
重新启动 SSH 服务器后一切都应该正常运行。