Saturday, January 30, 2016

How to make an init.d service run at startup in Ubuntu

To make an init.d service run at startup in Ubuntu, use the following command:

sudo update-rc.d link-bin defaults

You can also disable it as follows:

sudo update-rc.d -f link-bin remove

Reference:
http://askubuntu.com/questions/9382/how-can-i-configure-a-service-to-run-at-startup

No comments:

Post a Comment