Which of the following configuration files should be modified to disable Ctrl+Alt+Del in Linux?
Click on the arrows to vote for the correct answer
A. B. C. D.A.
https://www.linuxtechi.com/disable-reboot-using-ctrl-alt-del-keys/The correct answer is A. /etc/inittab.
The file /etc/inittab is the configuration file for the initialization process of Linux, which defines the default runlevel, services to be started, and actions to be taken when a particular event occurs. The Ctrl+Alt+Del key combination is one such event, which by default is configured to initiate a system reboot. However, it can be disabled by modifying the /etc/inittab file.
Here are the steps to disable Ctrl+Alt+Del in Linux:
bashsudo vi /etc/inittab
javascript#ca::ctrlaltdel:/sbin/shutdown -t3 -r now
Save the changes and exit the text editor.
Reboot the system or restart the init process for the changes to take effect.
csharpsudo init q
After disabling Ctrl+Alt+Del, you can still reboot the system using the "shutdown" command or the "reboot" command, but not by pressing the Ctrl+Alt+Del key combination.
The other options provided in the question are incorrect: