关闭,重新启动无法正常工作


11

我经常通过SSH进入我的Raspberry Pi,后者通过有线连接连接到我的网络。但是,上一次我尝试重新启动它时,它失败了:

pi@raspberrypi ~ $ shutdown now -bash: /sbin/shutdown: cannot execute binary file
pi@raspberrypi ~ $ sudo shutdown now /sbin/shutdown: 1: /sbin shutdown: Syntax error: word unexpected (expecting ")")

我目前正在运行Raspbian。

文件会损坏吗?现在如何安全地重新启动它?我是否需要重新启动电源?上次这样做时,我必须重新安装操作系统才能启动。


坏事发生了。您可能需要重新镜像SD卡。
lenik

2
您是否尝试过使用该命令sudo shutdown -h now关闭并sudo shutdown -r 0重新引导?
askmish 2014年

Answers:


4

关闭电源的正确语法是:

sudo shutdown -h now

sudo halt

并重新启动:

sudo shutdown -r now

sudo reboot

确保您使用sudo或以root用户身份登录。



By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.