M BUZZ CRAZE NEWS
// general

How to Shut down Ubuntu by using keyboard?

By Joseph Russell

How to shut Down Ubuntu by using Keyboard only. [Like Windows style]
In windows XP if we press Start+u+u this keys for shutdown.
and Start+u+r for restart computer.
Start+u+h for Hibernet
etc.
How can I do it in Ubuntu.
Any keyboard shortcut for it? and without terminal also.
I read:-
How to shut down the system
How to shut down my computer?

1

4 Answers

Well you could open terminal by pressing CTRL+ALT+T

then simply type :

-for shutdown:

sudo shutdown

or

sudo poweroff

-for restart:

sudo reboot

As far as I am aware, there isn't a system shortcut for shutdown, but you could create one. Read Are there any Keyboard Shortcuts to Shutdown?

1

I've got a nice one for you:

Shutting down by using a hotkey

  1. Install consolekit:

     sudo apt-get install consolekit

or use the Ubuntu Software Center: consolekit Install consolekit

  1. Press Super, then type Keyboard, then click on the Keyboard icon

  2. Click on Hotkeys

  3. Click on Custom hotkeys

  4. Add a new entry by clicking on the + sign:

Name: Shutdown

Command:

 /usr/bin/dbus-send --system --print-reply --dest="org.freedesktop.ConsoleKit" /org/freedesktop/ConsoleKit/Manager org.freedesktop.ConsoleKit.Manager.Stop
  1. Now click Apply, then click in the second column to assign a hotkey.

  2. Press any hotkey combination you desire. For instance: Ctrl+Alt+U

  3. Enjoy!


Reboot, hibernate, suspend

If you want to restart instead, replace said command by:

dbus-send --system --print-reply --dest="org.freedesktop.ConsoleKit" /org/freedesktop/ConsoleKit/Manager org.freedesktop.ConsoleKit.Manager.Restart

If you need to hibernate, replace it by:

dbus-send --system --print-reply --dest="org.freedesktop.UPower" /org/freedesktop/UPower org.freedesktop.UPower.Hibernate

Finally, if you're looking for a suspend shortcut, use this one:

dbus-send --system --print-reply --dest="org.freedesktop.UPower" /org/freedesktop/UPower org.freedesktop.UPower.Suspend

References

2

If you are logged in to a graphical session

Ctrl+Alt+t

sudo poweroff

If you are logged in to a ssh or vty session

sudo poweroff

sudo shutdown -P now

or

sudo telinit 0

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy