我使用 Ubuntu 11.10。我的问题是我无法使用sudo halt
命令关闭计算机。Ubuntu 关机屏幕出现并停在那里(类似于下图)。我等了大约 15 分钟,这异常长,不得不按下电源按钮关机。第二次尝试还是一样。
答案1
你的问题在哪里?halt
是poweroff
两件不同的事情,正如halt
手册中所解释的那样。
你应该用
sudo halt -p
将其关闭。
无论如何,来自man halt
:
When called with --force or when in runlevel 0 or 6, this tool invokes
the reboot(2) system call itself and directly reboots the system. Oth‐
erwise this simply invokes the shutdown(8) tool with the appropriate
arguments.
因此我认为直接使用是一个好主意shutdown
,如下所示:
sudo shutdown -h now