系统相关
首页 > 系统相关> > linux – 通过su-session转发X-windows

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(例如).

标签:linux,x11,sudo,xauth
来源: https://codeday.me/bug/20190814/1654997.html