Okay here's the question:
Ubuntu 12.04 Precise will not shut-down it just Reboots again!
Its as simple as that. I have tried every command out there and not a single one of these commands works in grub or Ctrl + Alt + T or any other method suggested.
sudo shutdown -p now
<-This does not workType in terminal:
sudo -i (to get a root shell, sudo gedit is not recommended) gedit /etc/default/grub
Find the line:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
- Change this to:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi=force"
- Save the file and close the file.
- Finally, in terminal:
update-grub
exit
(to end the root shell) <-This does not work
- Change this to:
sudo poweroff
<-This does not workalt + F2 and type
gksudo poweroff
<-This does not workCode:
sudo gedit /etc/default/grub
--> remove
quiet splash
, then :sudo update-grub
before trying to shut down again, run:
sudo apt-get install --reinstall ubuntu-desktop sudo dpkg-reconfigure -phigh -a <-This does not work
halt
orshutdown -h now
<-This does not worksudo init 0
<-This does not workacpi=norq
added to grub <-This does not workTyping
shutdown
orrestart
in Dash Home <-This does not worksudo shutdown -h 0
<-This does not worksudo halt
<-This does not worksudo shutdown -h 0 <-This does not work
So lets try to figure it out together, lets solve it since no updates are coming in to fix it!