nerdexam
Linux_Foundation

LFCS · Question #691

Which of the following commands brings a system running SysV init into a state in which it is safe to perform maintenance tasks? (Choose TWO correct answers.)

The correct answer is C. init 1 D. telinit 1. To bring a SysV init system into a safe state for maintenance, both init 1 and telinit 1 commands are used to switch to single-user mode.

Submitted by packet_pusher· Apr 18, 2026Operation of Running Systems

Question

Which of the following commands brings a system running SysV init into a state in which it is safe to perform maintenance tasks? (Choose TWO correct answers.)

Options

  • Ashutdown -R 1 now
  • Bshutdown -single now
  • Cinit 1
  • Dtelinit 1
  • Erunlevel 1

How the community answered

(21 responses)
  • B
    5% (1)
  • C
    90% (19)
  • E
    5% (1)

Why each option

To bring a SysV init system into a safe state for maintenance, both `init 1` and `telinit 1` commands are used to switch to single-user mode.

Ashutdown -R 1 now

`shutdown -R 1 now` is an incorrect syntax; `-R` is not a standard option for `shutdown` to specify a run level, and `-r` (reboot) does not take a run level argument this way.

Bshutdown -single now

`shutdown -single now` is not a valid `shutdown` command option; `shutdown` does not have a `-single` option to enter single-user mode.

Cinit 1Correct

The `init 1` command directly instructs the `init` process to switch to run level 1, which is the single-user mode, providing a minimal environment safe for maintenance tasks.

Dtelinit 1Correct

`telinit 1` is a utility that sends a signal to the `init` process, instructing it to change the system's run level to 1, effectively entering single-user mode for maintenance.

Erunlevel 1

The `runlevel` command displays the current and previous run levels; it is a query command and does not change the system's run level.

Concept tested: SysV init single-user mode

Topics

#SysV init#Runlevels#Maintenance mode#System control

Community Discussion

No community discussion yet for this question.

Full LFCS Practice