System V 系统中的自动启动服务

System V 系统中的自动启动服务

在systemD中,我们需要执行以下命令来在系统启动时自动启动应用程序:sudo systemctl enable <service-name>。由于不再支持 chkconfig,sysvinit 的等效命令是什么?我找不到任何。

答案1

基于这个答案在SO中你应该使用 not chkconfig, but update-rc.d

update-rc.d <service> defaults
update-rc.d <service> start 20 3 4 5
update-rc.d -f <service>  remove

相关内容