我需要通过 ssh 在远程服务器上启动 X 程序。该程序应使用远程 X 服务器(无需 x-forwarding)。正确的做法是什么?
答案1
someapp --display <display identifier>
或者
DISPLAY=<display identifier> someapp
显示标识符通常为:0
。
答案2
export DISPLAY=:0.0
然后运行你的程序。你可能需要先做xauth +localhost
。编辑:xhost +localhost
不是xauth