Search results
25 gru 2023 · The `update-rc.d` command is used to install and remove services that are System-V style init script links. The init scripts for these services are located in the `/etc/init.d/` directory. This command allows you to manage the startup and shutdown behavior of services in a Linux system.
I am running Ubuntu 13.10, and I'm pretty new to Linux. I tried: $ sudo apt-get install chkconfig. Package chkconfig is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or is only available from another source.
update-rc.d updates the System V style init script links /etc/rcrunlevel.d/NNname whose target is the script /etc/init.d/name. These links are run by init when it changes runlevels; they are generally used to start and stop system services such as daemons.
update-rc.d has two modes of operation for installing scripts into the boot sequence. A legacy mode where command line arguments are used to decide the sequence and runlevel configuration, and the default mode where dependency and runlevel information in the init.d script LSB comment header is used instead.
13 lut 2016 · update-rc.d creates symlinks in /etc/rc*.d/ for various run levels pointing to /etc/init.d/service_script (e.g. /etc/init.d/apache2) when a service is enabled to auto start on boot.
update-rc.d is a Linux command-line utility used to manage System-V style init script links, which are used to start, stop, and manage system services at boot time.
14 sie 2010 · The equivalent to chkconfig is update-rc.d The equivalents you seek are update-rc.d <service> defaults update-rc.d <service> start 20 3 4 5 update-rc.d -f <service> remove