#!/bin/sh #Autor:ley #Date:xxx #Email:xxx #Connent:start the system services LANG=en for name in `chkconfig --list|grep 3:on|awk '{print $1}'` do chkconfig$name off done for name in rsyslog network crond sshd sysstat do chkconfig$name on done #大概邏輯是: 1.第一個for循環查找出目前開啓的服務,而後進行所有關閉! 2.第二個for循環是開始必要的幾個服務(rsyslog network crond sshd sysstat) 其實shell就是這麼簡單!