nerdexam
Linux_Foundation

LFCA · Question #8

A company's IT associate has been asked to switch to single-user mode on a running Linux server in order to perform some troubleshooting. Of the options below, which is the best way of doing this?

The correct answer is D. linit 1. To switch a running Linux server into single-user mode for troubleshooting, the command init 1 is the correct method, which changes the system's runlevel.

Submitted by kavita_s· May 4, 2026System Administration

Question

A company's IT associate has been asked to switch to single-user mode on a running Linux server in order to perform some troubleshooting. Of the options below, which is the best way of doing this?

Options

  • Asu single
  • Binit singleuser
  • CIsu 1
  • Dlinit 1

How the community answered

(21 responses)
  • A
    5% (1)
  • B
    5% (1)
  • D
    90% (19)

Why each option

To switch a running Linux server into single-user mode for troubleshooting, the command `init 1` is the correct method, which changes the system's runlevel.

Asu single

`su single` attempts to switch to a user named 'single', which is not a standard way to enter single-user mode.

Binit singleuser

`init singleuser` is not a valid `init` command argument for entering single-user mode; the standard argument is '1' or 's'.

CIsu 1

`lsu 1` is not a recognized Linux command for changing runlevels or entering single-user mode.

Dlinit 1Correct

The `init 1` command instructs the `init` process to change the system's runlevel to 1, which corresponds to single-user mode. In this mode, most services are stopped, and only the root user is logged in, providing a minimal environment suitable for system maintenance and troubleshooting without interference from other processes or users.

Concept tested: Linux runlevels (single-user mode)

Source: https://man7.org/linux/man-pages/man8/init.8.html

Topics

#Runlevels#Systemd targets#System initialization#Troubleshooting

Community Discussion

No community discussion yet for this question.

Full LFCA Practice