[[email protected] ~]# chkconfig --list # 列出开启或关闭了哪些系统服务 [[email protected] ~]# chkconfig xxx off # 关闭某个系统服务 [[email protected] ~]# chkconfig xxx on # 开启某个系统服务 [[email protected] ~]# chkconfig --level 3 xxx off # 指定在哪个运行级别下关闭系统服务 [[email protected] ~]# chkconfig --add xxx # 添加指定的系统服务,注意添加后要开启 [[email protected] ~]# chkconfig --del xxx # 删除指定的系统服务