nerdexam
CompTIA

XK0-005 · Question #10551

Due to performance issues on a server, a Linux administrator needs to terminate an unresponsive process. Which of the following commands should the administrator use to terminate the process…

The correct answer is A. kill -SIGKILL 5545. To terminate an unresponsive process immediately without waiting for a graceful shutdown, the administrator can use the command kill -SIGKILL 5545 (A). This will send a signal to the process with the PID 5545 that cannot be ignored or handled by the process, and force it to stop.

System Management

Question

Due to performance issues on a server, a Linux administrator needs to terminate an unresponsive process. Which of the following commands should the administrator use to terminate the process immediately without waiting for a graceful shutdown?

Options

  • Akill -SIGKILL 5545
  • Bkill -SIGTERM 5545
  • Ckill -SIGHUP 5545
  • Dkill -SIGINT 5545

How the community answered

(26 responses)
  • A
    88% (23)
  • C
    4% (1)
  • D
    8% (2)

Explanation

To terminate an unresponsive process immediately without waiting for a graceful shutdown, the administrator can use the command kill -SIGKILL 5545 (A). This will send a signal to the process with the PID 5545 that cannot be ignored or handled by the process, and force it to stop.

Topics

#Linux processes#Process termination#kill command#Signals

Community Discussion

No community discussion yet for this question.

Full XK0-005 Practice