Ubuntu CTRL-ALT-DEL
Author: ---------------------------------------------------
In Ubuntu, you can reproduce the CTRL-ALT-DEL function of Windows (which brings up the task manager) like that.
First install gnome-system-monitor (which should already be installed) :
Code:
sudo apt-get install gnome-system-monitor
Then bind the keys CTRL-ALT-DEL to it (issue those commands in the terminal) :
Code:
gconftool-2 -t str --set /apps/metacity/global_keybindings/run_command_9 "
gconftool-2 -t str --set /apps/metacity/keybinding_commands/command_9 "gnome-system-monitor"
That's it !
__________________