Wednesday 2 May 2012

How to disable CTRL-ALT-DEL from rebooting a Linux system

The action taken for CTRL-ALT-DEL is defined in /etc/inittab and if we will look in that file we will see a line similar to the one from bellow :
ca::ctrlaltdel:/sbin/shutdown -t3 -r now

If we want to disable this action we only have to change this line. 
We can delete it, comment it, or even replace it with something like:
 
ca:12345:ctrlaltdel:/bin/echo "CTRL-ALT-DEL is disabled"

After making any changes to the inittab file, 
you will have to tell init to reload it, in order to activate the changes. 
To do that, simply run as root:
init q

No comments:

Post a Comment

Next previous home