A Linux administrator is troubleshooting a server that has become unresponsive. After running the ps aux command, the administrator identifies a critical process with a 'D' in the STAT column. Attempts to terminate the process with kill -9 are unsuccessful. What does this process state indicate?
The process is in an uninterruptible sleep, waiting for an I/O operation to complete.
The process is a zombie and is waiting for its parent process to read its exit status.
The process has been stopped by a job control signal and is awaiting a resume signal.
The process is in an interruptible sleep and is waiting for an event or signal.
The correct answer identifies the process as being in an uninterruptible sleep state, which is denoted by 'D' in the output of commands like ps. This state typically occurs when a process is blocked, waiting for an I/O operation (like reading from a disk or a network resource) to complete. Processes in this state cannot be interrupted by signals, including SIGKILL (kill -9), until the I/O operation finishes or times out. This is a protective measure to prevent data corruption.
Interruptible sleep (S): A process is waiting for an event to complete but can be woken up by signals. This is a normal, common state for idle processes.
Zombie (Z): A process that has terminated, but its entry remains in the process table because its parent process has not yet read its exit status.
Stopped (T): A process that has been suspended, usually by a job control signal like SIGSTOP (e.g., by pressing Ctrl+Z).
Ask Bash
Bash is our AI bot, trained to help you pass your exam. AI Generated Content may display inaccurate information, always double-check anything important.
What does the 'D' state in the STAT column of `ps aux` signify?
Open an interactive chat with Bash
Why can't a process in uninterruptible sleep (`D` state) be terminated by `kill -9`?
Open an interactive chat with Bash
How does uninterruptible sleep (`D` state) differ from interruptible sleep (`S` state)?
Open an interactive chat with Bash
CompTIA Linux+ XK0-006 (V8)
Services and User Management
Your Score:
Report Issue
Bash, the Crucial Exams Chat Bot
AI Bot
Loading...
Loading...
Loading...
IT & Cybersecurity Package Join Premium for Full Access