I am a Ubuntu newbie. I installed Ubuntu 12.04 on my Lenovo Ideapad S205 3 days ago. Installation and working is no problem but it doesn't power off on shutdown. Hard disk activity goes off but the fan and screen stays on. I have seen a few threads here that pointed out this issue. I tried some of the options that have worked for some users like using "shutodwn" and "poweroff" commands and installing certain updates. However, none of them worked for me (which is why I am posting this obviously). Please help.
4 Answers
Try using the command
shutdown -h
or
shutdown -P
where from man page:
-h Requests that the system be either halted or powered off after it has been brought down, with the choice as to which left up to the system.
-P Requests that the system be powered off after it has been brought down.

- 4,245
- 13
- 50
- 74
Try running shutdown
with the -h
option:
shutdown -h now
However if your system halts it is still safe to switch it off with poweroff button.

- 117,780

- 62
- 1
- 7
I had that same problem on my HP laptop. Found the solution here. I think it will work for you too. After this change you should be able to shutdown normally.
Open terminal and run:
gksudo gedit /etc/default/grub
the text editor opens and loads the file. Find the line that starts with GRUB_CMDLINE_LINUX_DEFAULT and add reboot=bios to the end. It should result in something like:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash reboot=bios"
Save the file and go back to the terminal and run:
sudo update-grub
After that, reboots and shutdowns should start working properly.

- 74
- 4
-
That didn't work either. I had even tried adding "acpi=force" to the same line as suggested on another post. – Shardul Aug 20 '13 at 06:21
I think you have installed ubuntu with acpi=off option, that option restrict system to shutdown, check your grub and erase the code "acpi=off" and reboot, may be it will work.
init 0
– Tarun Aug 16 '13 at 06:37