48

I'm trying to reboot my Debian 10 server but all I get is command not found.

I've tried:

shutdown
reboot
restart
poweroff

but nothing works. I found this thread but when I try to run any of this with sudo I get bash: sudo: command not found. At the moment I'm logged in as root so I should have the privileges to restart the machine.

Any ideas?

2
  • Maybe your PATH is empty or messed up. /sbin/reboot should work. If it works, do you still get command not found for many commands after the reboot? Commented Jul 22, 2019 at 8:30
  • Its a VM where I want to try my new coded C# apps with Mono so I don't use many commands there. I can say that apt, apt-get, su and wget works. So I tried it with your version and it works fine on the machine itself. After the reboot it works with putty too. It was the first start after the installation. Coud whis cause the problem?
    – BDevGW
    Commented Jul 22, 2019 at 8:39

8 Answers 8

43

The trick on how to fix this inconvenience is to explicitly tell the su to set environment variable as if the user logs in directly. This is can be done by the use of - switch.

$ su -
60

Debian 10 has now fully switched to Systemd which means that the traditional commands to halt or reboot a system like 'shutdown -h now' or 'reboot' will not work anymore

source

Starting with Debian 10, you should use the commands systemctl poweroff or systemctl reboot.

Edit: It appears the above source was partially incorrect, you can still log in as root (see answer by Eugene) to run the old commands. If you don't want to log in as root, use systemctl.

source

2
  • 2
    I wasn't able to get CRON to reboot my system - indeed using systemctl reboot in the cronjob worked.
    – Koen
    Commented Nov 21, 2020 at 15:21
  • 2
    or just sudo apt install systemd-sysv to get the symlinks back
    – reukiodo
    Commented Oct 24, 2021 at 3:27
10

As root -> systemctl poweroff or systemctl reboot.

3
  • 2
    Why, what does this do, explain with more detail. Commented Aug 29, 2019 at 15:01
  • @GammaGames your edit was rejected because it substantially changed the post. Your info is good and so should be its own answer. Please post your own answer. Commented Nov 14, 2019 at 18:47
  • @music2myear thank you, the reject reasons were generic and did not seem to match your explanation. I have submitted an answer.
    – GammaGames
    Commented Nov 14, 2019 at 18:54
6

As root -> Edit /root/.bashrc

Add to the end of the file:

alias reboot='systemctl reboot'
alias poweroff='systemctl poweroff'

Save the file and start session as root again.

1
  • or just sudo apt install systemd-sysv to get the symlinks back as a properly managed package
    – reukiodo
    Commented Oct 24, 2021 at 3:29
0

Use /sbin/shutdown [OPTIONS...] [TIME] [WALLMSG] :)

0

Use command to reboot immediately.

reboot -f

if above command doesn't work due to some kernel issue then you below command.

systemctl reboot to reboot or systemctl poweroff to shutdown the system.

0

Try:

nano /bin/reboot

add line: systemctl reboot

exit and save

chmod to your preffered execution level.

I'm sure there is a more elegant way to fix this but I am going to have a hard time remembering that only debian 10 requires a special reboot command. This works for me as long as I'm in su first.

0

saya mempunyai masalah yang sama, akan tetapi saya menemukan artikel di : https://www.tembolok.id/cara-mengatasi-linux-mint-tidak-bisa-shutdown/

dengan melakukan perubahan di folder /etc/default/grub menggunakan teks editor vi / gedit, kemudian lakukan perubahan pada teks berikut: sebelum : GRUB_CMDLINE_LINUX_DEFAULT=”quiet splash “ sesudah : GRUB_CMDLINE_LINUX_DEFAULT=”quiet splash acpi=force”

======================================================== I had the same problem, but I found the article at: https://www.tembolok.id/cara-mengatasi-linux-mint-tidak-bisa-shutdown/

by making changes in the /etc/default/grub folder using the text editor vi / gedit, then make changes to the following text: before : GRUB_CMDLINE_LINUX_DEFAULT=”quiet splash” after : GRUB_CMDLINE_LINUX_DEFAULT=”quiet splash acpi=force”

enter image description here

1
  • 1
    As it’s currently written, your answer is unclear. Please edit to add additional details that will help others understand how this addresses the question asked. You can find more information on how to write good answers in the help center.
    – Community Bot
    Commented Oct 2, 2023 at 13:29

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .