ubuntu下的开机启动

1 sudo vi /etc/rc.local

2 利用命令sudo

update-rc.d来启动和停止开机时的服务。例如:
sudo update-rc.d -f myserviceremove
sudo update-rc.d -f myservice default
再将/etc/default/apache2.conf内的语句全都注销。
还可以利用/etc/init/myservice.conf配置文件来停止自动启动,将文件中
start on (filesystem        and net-device-up IFACE!=lo)stop on runlevel [!2345]
注销掉
#start on (filesystem #      and net-device-up IFACE!=lo)#stop on runlevel [!2345]


你可能感兴趣的:(ubuntu,开机启动)