Tiny Core Linux

Tiny Core Base => TCB Q&A Forum => Topic started by: robp2175 on April 03, 2014, 09:07:42 AM

Title: Remap/Disable ctrl+alt+del command
Post by: robp2175 on April 03, 2014, 09:07:42 AM
I would like to disable ctrl+alt+del because I am going to run rdesktop automatically on boot and I do not want users to have the ability to access the terminal. However, I would like to remap this shortcut to another keyboard combination. Where would I go to do this and how?  I greatly appreciate any assistance with this. Thank You.
Title: Re: Remap/Disable ctrl+alt+del command
Post by: Cryptus on April 03, 2014, 09:28:42 AM
The place for those settings is /etc/X11/xorg.conf.d/90-custom-kbd.conf (where "90-custom-kbd.conf" is just an example).
You could read "The XKB Configuration Guide", e.g. at http://www.x.org/releases/X11R7.6/doc/xorg-docs/input/XKB-Config.html.

HTH, Frank
Title: Re: Remap/Disable ctrl+alt+del command
Post by: Jason W on April 03, 2014, 12:24:22 PM
My own entry to disable virtual terminal switching and ctrl-alt-del is the below entry, as once I have xscreensaver  or gnome-screensaver lock the screen I want no other way than the password to access the system without a hard reboot.

Code: [Select]
Section "ServerFlags"
Option "DontVTSwitch" "true"
Option "DontZap"  "yes"
EndSection