Easy Tutorial
❮ Linux Comm Pppsetup Linux Comm Awk ❯

Linux chkconfig Command

Linux Command Manual

The Linux chkconfig command is used to check and set various system services.

This is a program developed by Red Hat under the GPL rules, which can query which system services are executed by the operating system in each execution level, including various resident services.

Syntax

chkconfig [--add][--del][--list][system service] or chkconfig [--level <level code>][system service][on/off/reset]

Parameters:

Examples

List all commands known by chkconfig.

# chkconfig --list

Enable service.

# chkconfig telnet on   // Enable Telnet service
# chkconfig --list      // List the status of all services known by chkconfig

Disable service.

# chkconfig telnet off  // Disable Telnet service
# chkconfig --list      // List the status of all services known by chkconfig

Linux Command Manual

❮ Linux Comm Pppsetup Linux Comm Awk ❯