nerdexam
CompTIA

LX0-103 · Question #82

Which SysV init configuration file should be modified to disable the ctrl-alt-delete key combination?

The correct answer is C. /etc/inittab. The /etc/inittab file controls SysV init behavior including the ctrl-alt-delete key combination handler.

System Architecture

Question

Which SysV init configuration file should be modified to disable the ctrl-alt-delete key combination?

Options

  • A/etc/keys
  • B/proc/keys
  • C/etc/inittab
  • D/proc/inittab
  • E/etc/reboot

How the community answered

(24 responses)
  • A
    4% (1)
  • C
    88% (21)
  • E
    8% (2)

Why each option

The /etc/inittab file controls SysV init behavior including the ctrl-alt-delete key combination handler.

A/etc/keys

/etc/keys does not exist as a standard Linux configuration file for key combination handling.

B/proc/keys

/proc/keys is a kernel keyring interface file used for cryptographic key management, not for remapping keyboard sequences.

C/etc/inittabCorrect

In SysV init systems, /etc/inittab defines system initialization actions. The ctrl-alt-delete sequence is handled by a line with the 'ctrlaltdel' action keyword (e.g., ca::ctrlaltdel:/sbin/shutdown -r now), and commenting out or modifying that line disables or changes the behavior.

D/proc/inittab

/proc/inittab does not exist; /proc is a virtual filesystem exposing kernel state, not configuration files.

E/etc/reboot

/etc/reboot does not exist as a configuration file on standard Linux systems.

Concept tested: SysV init inittab configuration and key handling

Source: https://linux.die.net/man/5/inittab

Topics

#SysV init#inittab#ctrl-alt-delete#key combination

Community Discussion

No community discussion yet for this question.

Full LX0-103 Practice