Linux Ubuntu: start e stop di un servizio all'avvio

puoi disabilitare l'avvio automatico del Web Server Apache scrivendo:
#sudo update-rc.d apache2 disable 5 4 3 2
quando vuoi avviarlo potrai usare:
#sudo service apache2 start
 puoi abilitare l'avvio automatico del Web Server Apache scrivendo:
#sudo update-rc.d apache2 disable 5 4 3 2
quando vuoi fermarlo potrai usare:
#sudo service apache2 stop