1. 程式人生 > >Linux禁止Ctrl+Alt+Del重新啟動

Linux禁止Ctrl+Alt+Del重新啟動

建議 ini res mod init ctrl+ pop tro tde

方法1:改動/etc/inittab
屏蔽
ca:12345:ctrlaltdel:/sbin/shutdown -t1 -a -r now
或者刪除改行內容

保存退出
適用對象:RedHat4.8 RedHat 5.4 RedHat 5.5

方法2:改動/etc/init/control-alt-delete.conf
編輯/etc/init/control-alt-delete.conf
屏蔽
start on control-alt-delete
exec /sbin/shutdown -r now "Control-Alt-Delete pressed"

保存退出
或者另存改文檔{建議在shell腳本中使用以下方法}

#\mv /etc/init/control-alt-delete.conf /etc/init/control-alt-delete.conf.bak

適用對象:RedHat 6.X,CentOS 6.x

Linux禁止Ctrl+Alt+Del重新啟動