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…
Question
Exhibit
Options
- Arenice -n -20 6295
- Bpstree -p 6295
- Ciostat -cy 1 5
- Dkill -9 6295
How the community answered
(43 responses)- A7% (3)
- B2% (1)
- C16% (7)
- D74% (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
Community Discussion
No community discussion yet for this question.
