snippetbashTip
update-rc.d — Install and remove services which are System-V style init script links. Init scripts are in the `/et
Viewed 0 times
update-rc.dcommandremoveservicesandinstallcliwhich
linux
Problem
How to use the
update-rc.d command: Install and remove services which are System-V style init script links. Init scripts are in the /etc/init.d/. More information: <https://manned.org/update-rc.d>.Solution
update-rc.d — Install and remove services which are System-V style init script links. Init scripts are in the /etc/init.d/. More information: <https://manned.org/update-rc.d>.Install a service:
update-rc.d {{mysql}} defaultsEnable a service:
update-rc.d {{mysql}} enableDisable a service:
update-rc.d {{mysql}} disableForcibly remove a service:
update-rc.d -f {{mysql}} removeCode Snippets
Install a service
update-rc.d {{mysql}} defaultsEnable a service
update-rc.d {{mysql}} enableDisable a service
update-rc.d {{mysql}} disableForcibly remove a service
update-rc.d -f {{mysql}} removeContext
tldr-pages: linux/update-rc.d
Revisions (0)
No revisions yet.