批量管理Linux系統服務

批量管理Linux系統服務 #!/bin/sh #關閉全部系統服務 for i in `chkconfig --list |awk '{print $1}'`; do chkconfig $i off; echo chkconfig $i off; done #開啓指定的服務 for i in crond network iptables messagebus udev-post ntpd ssh
相關文章
相關標籤/搜索