linux优化之优化开机自启动服务
Posted axzq
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux优化之优化开机自启动服务相关的知识,希望对你有一定的参考价值。
过滤出来需要的开机自启动项:chkconfig --list|grep 3:on|grep -v "crond|sshd|network|rsyslog|sysstat"
关闭不需要的自启动项:chkconfig --list|grep 3:on|grep -v "crond|sshd|network|rsyslog|sysstat"|awk ‘ {print "chkconfig",$1,"off"} ‘|bash
显示最后的开机自启动项:chkconfig --list|grep 3:on
以上是关于linux优化之优化开机自启动服务的主要内容,如果未能解决你的问题,请参考以下文章