1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00

init: add page (#14039)

This commit is contained in:
Managor 2024-10-24 15:22:13 +03:00 committed by GitHub
parent a243b35be0
commit c9b7f7411f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

25
pages/linux/init.md Normal file
View file

@ -0,0 +1,25 @@
# init
> Linux run level manager.
> Requires the SYSVINIT compile-time option to be enabled if using systemd.
> More information: <https://manned.org/man/init.8>.
- Set the system to run a graphical environment:
`sudo init 5`
- Set the system to run multiuser terminal:
`sudo init 3`
- Shut down the system:
`init 0`
- Reboot the system:
`init 6`
- Set the system to run on terminal with only root user allowed and no networking:
`sudo init 1`