This small tutorial shows two ways of shutting down or rebooting a Debian 10 server or desktop using the terminal. The same commands will work for Debian 11 too.
Open the terminal and execute the following command to shut down the machine,
shutdown --poweroff
This will shut down the machine. If you want to cancel, you have to use the -c switch along with the shutdown command.
Similarly, when you have to reboot, execute the below command. If you want to cancel your action, use --reboot option.
shutdown --reboot
An alternative to the shutdown command is to use the systemd systemctl command.
Debian 10 power off using systemctl:
systemctl poweroff
Debian 10 reboot using systemctl:
systemctl reboot
Magento is a free and open-source e-commerce platform written in PHP. It is simple, easy…
ISPConfig is an open-source control panel that allows users to manage multiple servers from a…
As a Linux administrator, you may find it necessary to troubleshoot or test your Simple…
Ubuntu 24.04, like many modern Linux distributions, relies on the NetworkManager for managing network connections.…
Restic is a modern, open-source backup program designed for efficiency, security, and simplicity. It enables…
phpMyAdmin is a popular free tool written in PHP intended to administer MySQL and MariaDB…