应用程序在 os x 上以错误的方式启动
我使用 subprocess 模块在 python 中启动应用程序,因此该应用程序出现在根目录“launchd”下的活动监视器实用程序中。
cmd = "/usr/bin/sudo -H -u "+ self.getCurrentUserName() + "-P" + +os.path.join(dir, app) + app_args
p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, shell=True)
当通过终端手动启动应用程序时,它可以正常工作,并且显示在当前用户“launchd”下。 是否可以在Python中的当前用户“launchd”下启动应用程序?
我运行的是 OS X 10.6。
I start application within python using subprocess module, so this application appears in Activity Monitor utility under roots "launchd.
cmd = "/usr/bin/sudo -H -u "+ self.getCurrentUserName() + "-P" + +os.path.join(dir, app) + app_args
p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, shell=True)
When application is started manually via Terminal it works ok and it appears under current users "launchd".
Is it possible to launch applications under current users "launchd" within python?
I'm running OS X 10.6.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您以 sudo 身份运行命令时,它将始终显示为属于 root,这就是 sudo 的作用...
--Dave
When you run a command as sudo, it will always show up as belonging to root, that is what sudo does...
--Dave