linux – 通过su-session转发X-windows

我正试图转发我的X窗口,但似乎仅限于会话?

我正在尝试做的是通过sudo su调用x-applications作为另一个用户.

如果我知道其他用户的密码,则可以通过以下方式轻松解决:

ssh -Y user@host
password:  ********
gedit &

但是,如果运行我没有密码的用户(例如weblogic):

ssh –Y me@host
xauth list

sudo csh (now root)
xauth add (last line of the xauth list above)
gedit &

但是,我无法允许其他用户访问x显示器:

xauth list
su – weblogic
xauth add (last line of the xauth list above)
gedit (see if gedit launches).

这失败了.

我也尝试通过sudo直接转到其他用户:

ssh –Y me@host
xauth list
sudo su – weblogic
xauth add (last line of the xauth list above)
gedit (see if gedit launches).

这也失败了.

解决方法:

问题可能是su – 将清除除TERM之外的所有环境变量,因此您将丢失DISPLAY设置.尝试在gedit之前设置DISPLAY = localhost:10.0(例如).

上一篇:Xshell 6 首次连接虚拟机 CentOS 6.8报错:/usr/bin/xauth: file /root/.Xauthority does not exist


下一篇:Systemd – 查找要使用的.Xauthority文件