42

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?

Destroy666
  • 5,299
  • 7
  • 16
  • 35
BDevGW
  • 575
  • 1
  • 6
  • 13
  • 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? – Kamil Maciorowski Jul 22 '19 at 08: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 Jul 22 '19 at 08:39

7 Answers7

55

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

GammaGames
  • 657
  • 5
  • 7
40

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 -
10

As root -> systemctl poweroff or systemctl reboot.

MartinsBee
  • 101
  • 2
5

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.

user1160337
  • 51
  • 1
  • 1
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

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.