Why do I get a reboot instead of a shutdown?
I faced the same issue after I installed Ubuntu 12.04 on a newly built machine. This answer on another post helped me resolve it:
I resolved by adding acpi=noirq to the kernel arguments
sudo editor /etc/default/grub
Add
GRUB_CMDLINE_LINUX_DEFAULT="acpi=noirq quiet splash"
Then
sudo update-grub
I had the same issue with new acer aspre v5 notebook. It has been solved by enabling laptop-mode as running
sudo apt-get install laptop-mode-tools
In my case it was a Wake On Lan motherboard (Gigabyte GA-Z77M-D3H) issue.
My solution:
Install ethtool:
sudo apt-get install ethtool
Set WOL off:
sudo ethtool -s eth0 wol d
If it works, then edit the /etc/rc.local
file and add ethtool -s eth0 wol d
, before the exit 0
line.
Hope it will help you.