Move pages under tldr, lint run.sh, update docs

This commit is contained in:
2024-02-21 13:58:43 +02:00
parent 3d653cc7e6
commit 2c475fa62d
4806 changed files with 36 additions and 35 deletions

33
tldr/linux/chkconfig Normal file
View File

@@ -0,0 +1,33 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# chkconfig
> Manage the runlevel of services on CentOS 6.
> More information: <https://manned.org/chkconfig>.
- List services with runlevel:
`chkconfig --list`
- Show a service's runlevel:
`chkconfig --list {{ntpd}}`
- Enable service at boot:
`chkconfig {{sshd}} on`
- Enable service at boot for runlevels 2, 3, 4, and 5:
`chkconfig --level {{2345}} {{sshd}} on`
- Disable service at boot:
`chkconfig {{ntpd}} off`
- Disable service at boot for runlevel 3:
`chkconfig --level {{3}} {{ntpd}} off`