Does Linux have a Ctrl+Alt+Del equivalent?
Solution 1:
X can be killed using Ctrl+Alt+BackSpace, and if you hit Ctrl+Alt+F1 (or F2 through 6), you'll be dropped to a virtual console where you can type commands to kill the bad app. To switch back to the GUI, hit Ctrl+Alt+F7.
Solution 2:
Under GNU/Linux [at least those based on the SystemV init style], the behavior of ctrl+alt+del relies on the configuration file /etc/inittab
where you should be able to read a line like:
<id>::ctrlaltdel:/sbin/shutdown -t3 -r now
(example from an ArchLinux distribution) which means that the system will be shutdown when it receives the key combination. But you may want to do something else, like*:
<id>::ctrlaltdel:/usb/bin/sudo make me a sandwich
(which is much more useful :)