在ubuntu上默认是不支持chkconfig命令的,但可以自己安装,安装包已经上传。
安装包路径:http://download.csdn.net/detail/hylongsuny/5276536
方法:在存放目录执行:dpkg -i chkconfig.deb
在ubuntu下使用应该会出现这样的错误:
/sbin/insserv: No such file or directory
据说这是Ubuntu的小bug。
解决办法:sudo ln -s /usr/lib/insserv/insserv /sbin/insserv
chkconfig命令主要用来更新(启动或停止)和查询系统服务的运行级信息。谨记chkconfig不是立即自动禁止或激活一个服务,它只是简单的改变了符号连接。
ubuntu下使用chkconfig是一种习惯:http://www.linuxdiyf.com/linux/29626.html
Linux入门知识:chkconfig命令详解:http://www.linuxdiyf.com/linux/8031.html