在 sudo bash 脚本中更改用户

发布于 2024-11-18 04:30:06 字数 368 浏览 4 评论 0原文

在使用 sudo 调用的 bash 脚本中,我正在调用:

/usr/bin/firefox -new-tab http://stackoverflow.com

但随后我收到消息:

Firefox 已在运行,但尚未运行 回应。要打开一个新窗口,您 必须先关闭现有的Firefox 处理,或重新启动系统

,我猜这是因为该脚本是由普通用户由 sudo 和 firefox 调用的。 如果我在没有 sudo 的情况下调用该命令,它就可以工作。

那么我怎样才能在 sudo 调用脚本中切换回普通用户呢?

In a bash script that is called with sudo i am calling:

/usr/bin/firefox -new-tab http://stackoverflow.com

but then i get the message:

Firefox is already running, but is not
responding. To open a new window, you
must first close the existing Firefox
process, or restart your system

this is, i guess, because the script is called by sudo and firefox by the normal user.
if i would call the command without sudo it works.

so how can i switch back to the normal user in a sudo called script?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

鹤仙姿 2024-11-25 04:30:06

在脚本中再次使用 sudo 。

sudo -u user -H /usr/bin/firefox -new-tab http://stackoverflow.com

using sudo again inside your script.

sudo -u user -H /usr/bin/firefox -new-tab http://stackoverflow.com
鸠魁 2024-11-25 04:30:06

这篇文章可能会回答您的问题

This post might answer your question

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文