标签:figure int 关闭 固定 term 没有 log 状态 删除
centos7里面已不再使用这个chkconfig --level 3 network off # 指定3级别network关闭:
chkconfig --level 345 network off # 指定345级别network关闭:
chkconfig --level 345 network on # 指定345级别network开启:
chkconfig --del network #删除任务
指定脚本加入到服务列表里面去
chkconfig --add 123
操作步骤;
将启动脚本放入到 /etc/init.d/文件里面去,
文件名称自定义,文件内容有限制
1,首先得是脚本
2,固定格式
#! /bin/bash
# description: Activates/Deactivates all network interfaces configured to # start at boot time.
标签:figure int 关闭 固定 term 没有 log 状态 删除
原文地址:http://blog.51cto.com/13451715/2310937