from small one page howto to huge articles all in one place
poll results
Last additions:
May 25th. 2007:
April, 26th. 2006:
|
. You are here: System->Tips and Tricks
Preventing System Reboot with Ctrl-Alt-DelThe "Three-Finger-Salute" or, the key combination Ctrl+Alt+Del is typically mapped to the command /sbin/shutdown -r now. In other words, it reboots your system. Sometimes this may be unwanted behavior, so this tip shows you how to disable, or remap that key combination. The file we need to edit is /etc/inittab. Find the line that says
ca:12345:ctrlaltdel:/sbin/shutdown -r now
and simply comment it out by putting a # in front of it. Or, if you prefer, you can change the /sbin/shutdown -r now part to another command. Lastly, we need to tell the init process about these changes. Code Listing 1: Reloading init # /sbin/init q From http://www.gentoo.org/news/en/gwn/20030421-newsletter.xml
rate this article:current rating: average rating: 1.4 (55 votes) (1=very good 6=terrible) Your rating: back
|