nerdexam
CompTIA

XK0-005 · Question #273

A systems administrator notices several intensive tasks executing from users Joe and Ann. These processes are impacting server operations but must be allowed to continue running. Which of the…

The correct answer is B. renice 11 -u joe ann. renice 11 -u joe ann lowers the scheduling priority of all processes owned by users joe and ann. Nice values range from -20 (highest priority) to 19 (lowest priority). Setting a positive nice value of 11 tells the kernel scheduler to deprioritize those processes relative to…

System Management

Question

A systems administrator notices several intensive tasks executing from users Joe and Ann. These processes are impacting server operations but must be allowed to continue running. Which of the following commands should the systems administrator run to reduce the impact on the server?

Options

  • Apkill -u joe ann
  • Brenice 11 -u joe ann
  • Cnohup -u joe ann
  • Dstrace -u joe ann

How the community answered

(28 responses)
  • A
    14% (4)
  • B
    71% (20)
  • C
    7% (2)
  • D
    7% (2)

Explanation

renice 11 -u joe ann lowers the scheduling priority of all processes owned by users joe and ann. Nice values range from -20 (highest priority) to 19 (lowest priority). Setting a positive nice value of 11 tells the kernel scheduler to deprioritize those processes relative to others, reducing their CPU impact without killing them. pkill -u joe ann would terminate the processes entirely. nohup prevents processes from dying on hangup but does not reduce priority. strace traces system calls for debugging and adds overhead rather than reducing it.

Topics

#Process management#Resource allocation#renice command#Linux CLI

Community Discussion

No community discussion yet for this question.

Full XK0-005 Practice