KM: the following are kludgey, disgusting quick workarounds; I wouldn't deploy this on more than one machine:
$ sudo mv /sbin/shutdown /sbin/real-shutdown a better way to do that is probably using 'dpkg-divert' somehow. You could also remove the execute permissions: $ sudo chmod a-x /sbin/shutdown The 'ctrl-alt-del' command combination can be dealt with by editing: /etc/inittab and commenting out: ca:12345:ctrlaltdel:/sbin/shutdown -t1 -a -r now -- Only allow a smaller selection of users to perform privileged shutdown/suspend/hibernate https://launchpad.net/bugs/81700 -- ubuntu-bugs mailing list [email protected] https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
