nerdexam
CompTIA

XK0-005 · Question #1522

A Linux administrator is troubleshooting the root cause of a high CPU load and average. Which of the following commands will permanently resolve the issue?

The correct answer is D. kill -9 6295. To permanently resolve high CPU load caused by a runaway process, the process must be terminated. kill -9 6295 sends the SIGKILL signal to process ID 6295, forcibly stopping it and freeing the CPU resources it was consuming. Option A (renice) only changes process priority but…

Troubleshooting

Question

A Linux administrator is troubleshooting the root cause of a high CPU load and average. Which of the following commands will permanently resolve the issue?

Exhibit

XK0-005 question #1522 exhibit

Options

  • Arenice -n -20 6295
  • Bpstree -p 6295
  • Ciostat -cy 1 5
  • Dkill -9 6295

How the community answered

(43 responses)
  • A
    7% (3)
  • B
    2% (1)
  • C
    16% (7)
  • D
    74% (32)

Explanation

To permanently resolve high CPU load caused by a runaway process, the process must be terminated. kill -9 6295 sends the SIGKILL signal to process ID 6295, forcibly stopping it and freeing the CPU resources it was consuming. Option A (renice) only changes process priority but leaves it running, which does not permanently fix the issue. Option B (pstree) is a diagnostic tool only. Option C (iostat) reports I/O statistics and does nothing to resolve CPU load. Only killing the offending process (D) permanently resolves the issue.

Topics

#Process Management#Linux Commands#High CPU#Troubleshooting

Community Discussion

No community discussion yet for this question.

Full XK0-005 Practice