《LINUX教程:Debian、Ubuntu系统中开机启动设置》要点:
本文介绍了LINUX教程:Debian、Ubuntu系统中开机启动设置,希望对您有用。如果有疑问,可以联系我们。
Unix系统使用比拟广泛的便是Linux系统,而基于Linux内核下也有很多衍生的其他的系统,其中就有Debian、Ubuntu这类的系统,在Linux系统下平时使用习惯的开机启动/etc/rc.local或/etc/rc.d/rc.local就没有了,那在Debian、Ubuntu下需要开启启动时就需要使用update-rc.d用来定义开机启动的命令 ,举一个简单的例子在Debian、Ubuntu开机启动iptables:
在Debian、Ubuntu中iptables并没有被做成类似Linux下的服务,所以必要启动时就用到update-rc.d,通过man手册得知update-rc.d必要在/etc/init.d目录下有启动文件,所以在Debian、Ubuntu下开启iptables就可以通过以下方式:
root@localhost:/usr/local/scripts# vim iptables.sh
#!/bin/bash
/sbin/iptables-restore < /usr/local/scripts/iptables
root@localhost:/usr/local/scripts# ln -sv /usr/local/scripts/iptables.sh /etc/init.d/iptables
root@localhost:/usr/local/scripts# update-rc.d iptables defaults
这样就在开机启动时就会把自行界说写好的iptables文件导入启用,而在update-rc.d界说一些系统中的服务开机自启也很简单,如开启自启ssh服务:
root@localhost:/usr/local/scripts# update-rc.d ssh enable
这样就启用了开机自启ssh服务,类似于Linux系统下的chkconfig、systemctl,当然更多的使用办法可以参看man帮助手册.
更多Ubuntu相关信息见Ubuntu 专题页面 /topicnews.aspx?tid=2
本文永远更新链接地址:
欢迎参与《LINUX教程:Debian、Ubuntu系统中开机启动设置》讨论,分享您的想法,维易PHP学院为您提供专业教程。
转载请注明本页网址:
http://www.vephp.com/jiaocheng/8839.html