在 sudo bash 脚本中更改用户
在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在脚本中再次使用 sudo 。
using sudo again inside your script.
这篇文章可能会回答您的问题
This post might answer your question