2010/09/22

Startup services

To deactivate a service at boot, for example, apache2: 'sudo update-rc.d -f
apache2 remove'. To activate it: 'sudo update-rc.d apache2 install
defaults'. (From debian-hints, fortune.)
  
    ENABLE
    update-rc.d -f apache2 remove
    DISABLE
    update-rc.d apache2 install defaults

No comments:

Post a Comment