Linux Ubuntu 下启动时自动运行程序

发布于 2024-12-01 22:51:52 字数 1549 浏览 0 评论 0原文

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

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

发布评论

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

评论(1

停顿的约定 2024-12-08 22:51:52
sudo mv /filename /etc/init.d/
sudo chmod +x /etc/init.d/filename 
sudo update-rc.d filename defaults 

该脚本现在应该在启动时启动。请注意,此方法也适用于硬链接和符号链接 (ln)。

此时,启动过程中的 PATH 尚未设置,因此自始至终使用绝对路径至关重要。 但是,正如 Steve HHH 的评论中所指出的,明确声明 update-rc.d 命令的完整文件路径 (/etc/init.d/filename)在大多数 Linux 版本中无效。根据 update-rc.d 的手册页,第二个参数是位于/etc/init.d/*中的脚本。

另外,正如评论(Charles Brandt)所指出的,/filename 必须是 init 样式脚本。还提供了一个很好的模板 - System V init 脚本模板

正如评论(Russell Yan)所指出的,这仅适用于 update-rc.d 的默认模式。

根据update-rc.d的手册,它可以运行在两种模式下:“使用legacy模式的机器将有一个文件/etc/init.d/.legacy-bootordering”,在在这种情况下,您必须通过命令行参数传递序列和运行级别配置。

上述示例的等效参数集是

sudo update-rc.d filename start 20 2 3 4 5 。停止 20 0 1 6 。

sudo mv /filename /etc/init.d/
sudo chmod +x /etc/init.d/filename 
sudo update-rc.d filename defaults 

The script should now start on boot. Note that this method also works with both hard links and symbolic links (ln).

At this point in the boot process PATH isn't set yet, so it is critical that absolute paths are used throughout. But, as pointed out in the comments by Steve HHH, explicitly declaring the full file path (/etc/init.d/filename) for the update-rc.d command is not valid in most versions of Linux. Per the manpage for update-rc.d, the second parameter is a script located in /etc/init.d/*.

Also as pointed out in the comments (by Charles Brandt), /filename must be an init style script. A good template was also provided - System V init script template.

As pointed out in the comments (by Russell Yan), this works only on default mode of update-rc.d.

According to the manual of update-rc.d, it can run on two modes: "the machines using the legacy mode will have a file /etc/init.d/.legacy-bootordering", in which case you have to pass sequence and runlevel configuration through command line arguments.

The equivalent argument set for the above example is

sudo update-rc.d filename start 20 2 3 4 5 . stop 20 0 1 6 .

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