如何通过 ssh 启动远程服务器上的 X 应用程序?

如何通过 ssh 启动远程服务器上的 X 应用程序?

我需要通过 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

相关内容