设备管理 · 2022年02月20日 0

rcconf命令 – Linux下运行等级服务配置工具

rcconf命令是Debian Linux下的运行等级服务配置工具,用以设置在特定的运行等级下系统服务的启动配置。 **语法格式:** rcconf [参数] **常用选项:** | --help | 打印帮助信息 | | --------------- | ------------------------------ | | --dialog | 使用对话命令显示菜单 | | --notermcheck | 不按照终端属性来设置窗口尺寸 | **参考实例** 使用对话命令显示菜单: ``` [root@anycode ~]# rcconf --dialog ``` 不按照终端属性来设置窗口尺寸: ``` [root@anycode ~]# rcconf --notermcheck ``` 获取帮助信息: ``` [root@anycode ~]# rcconf --help ```