Xterm 给出错误,表示未设置 DISPLAY

Xterm 给出错误,表示未设置 DISPLAY
$ xterm 
xterm: Xt error: Can't open display:  
xterm: DISPLAY is not set

我使用 连接到服务器ssh -X user@server。 DISPLAY 未设置

$ echo $DISPLAY

$

我正在运行 Ubuntu 13.04

答案1

你的 sshd 配置中是否启用了 X11 转发?

grep -i x11 /etc/ssh/sshd_config

你应该有:

X11Forwarding yes

如果这不是问题,请尝试使用“ssh -v”运行 ssh 以获取更多调试输出并将其发布到这里。也可以尝试“ssh -Y”。

相关内容