1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 22:22:18 +02:00
tldr/pages/linux/telinit.md
2022-10-25 13:18:08 -03:00

29 lines
526 B
Markdown

# telinit
> Change SysV runlevel.
> Since the concept SysV runlevels is obsolete the runlevel requests will be transparently translated into systemd unit activation requests.
> More information: <https://manned.org/telinit>.
- Power off the machine:
`telinit 0`
- Reboot the machine:
`telinit 6`
- Change SysV run level:
`telinit {{2|3|4|5}}`
- Change to rescue mode:
`telinit 1`
- Reload daemon configuration:
`telinit q`
- Do not send a wall message before reboot/power-off (6/0):
`telinit --no-wall {{value}}`