linux精简开机启动项

时间:2021-05-16 04:45:07

新装的linux系统必须开启的服务:

ssd: 远程连接 (必须)

rsyslog: 系统日志(必须)

network: 网络(必须)

crond: 定时任务 非必须但很重要

其他根据自己的工作需求来

这是开机启动项的方法

1.ntsysv


linux精简开机启动项

2.setup----->选中system service

3.chkconfig

3.1

chkcconfig --list |grep 3:on|awk  '{print $1}'|sed -r 's#(.*)#chkconfig \1 off#g'|bash

chkconfig sshd on

chkconig rsyslog on

chkconfig network on

chkconfig crond on

3.2

chkconfig --list|grep 3:on |grep -VE "crond|sshd|network|rsyslog"|awk '{print $1}'|sed -r 's#(.*)#chkconfig \1 off#g'|bash

3.3

for name in 'chkconfig --list|grep 3:on |grep -VE "crond|sshd|network|rsyslog"|awk '{print $1}'';do chkconfig $name off;done

3.4

for name in"chkcconfig --list |grep 3:on|awk  '{print $1}'";do chkconfig $name off;done

for name in crond network rsyslog sshd;do chkconfig --level3 $name on;done