我目前正在从 18.04LTS 迁移到 22.04
如何为已登录用户以外的其他用户打开
- 图形文件浏览器
- 在此文件浏览器中:通过鼠标右键单击“在终端中打开”来打开命令 shell
我在 18.04 中使用的解决方案不再打开终端。
答案1
以下对我有用:
安装 dbus-launch(通过sudo apt install dbus-x11
)
#!/bin/sh
xhost +SI:localuser:myOtherUser
sudo --user myOtherUser env DISPLAY=$DISPLAY nautilus
xhost -SI:localuser:myOtherUser