snippetbashTip
init — Linux run level manager. Requires the SYSVINIT compile-time option to be enabled if using systemd. M
Viewed 0 times
commandrunlevelinitclirequireslinuxmanager
linux
Problem
How to use the
init command: Linux run level manager. Requires the SYSVINIT compile-time option to be enabled if using systemd. More information: <https://manned.org/init.8>.Solution
init — Linux run level manager. Requires the SYSVINIT compile-time option to be enabled if using systemd. More information: <https://manned.org/init.8>.Set the system to run a graphical environment:
sudo init 5Set the system to run multiuser terminal:
sudo init 3Shut down the system:
init 0Reboot the system:
init 6Set the system to run on terminal with only root user allowed and no networking:
sudo init 1Code Snippets
Set the system to run a graphical environment
sudo init 5Set the system to run multiuser terminal
sudo init 3Shut down the system
init 0Reboot the system
init 6Set the system to run on terminal with only root user allowed and no networking
sudo init 1Context
tldr-pages: linux/init
Revisions (0)
No revisions yet.