将应用程序添加到 Ubuntu 根目录的自动运行
我需要将 lampp 添加到自动运行中。我应该在哪里放置此命令 /opt/lampp/lampp start
以便在系统启动时从 root 运行?
谢谢。
I need to add my lampp to autorun. Where shuld I put this command /opt/lampp/lampp start
to be runned from root on system bootup?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将其添加到/etc/rc.local
它将在启动时以 root 身份运行。
Add it to /etc/rc.local
It will be run as root on startup.
Systems\Preferences\Sessions 中应该有一个启动程序选项卡。您只需在那里添加您的命令即可。要使其以 root 身份运行,您需要通过执行
chown
就可以了。There should be a Startup Programs tab in Systems\Preferences\Sessions. You just add your command there. To make it run as root, you need to give the file itself root ownership, by doing a
chown
on it.