一鍵啓動系統必要服務的腳本

#!/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就是這麼簡單!
相關文章
相關標籤/搜索