author :headsen chen

date: 2018-06-04  12:02:27 

#!/bin/bash
for i in `chkconfig --list |awk '{print $1}'`;do chkconfig $i off;done 
for i in network rsyslog crond sshd postfix sysstat;do chkconfig $i on;done #postfix 可以不选,只要不发邮件
View Code

相关文章:

  • 2021-08-13
  • 2022-01-29
  • 2021-07-05
  • 2021-09-17
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-01-24
  • 2022-12-23
  • 2021-11-21
  • 2021-11-15
  • 2021-12-27
  • 2021-12-22
  • 2021-08-16
相关资源
相似解决方案