nerdexam
CompTIA

XK0-005 · Question #109480

A systems administrator wants to know the current status of a series of dd jobs that were started in the background three hours ago. Which of the following commands will achieve this task?

The correct answer is D. sudo killall -USR1 dd. https://askubuntu.com/questions/215505/how-do-you-monitor-the-progress-of-dd You can monitor the progress of dd once it's running without halting it by using the kill command to send a signal to the process. After you start dd, open another terminal and enter either: sudo kill…

System Management

Question

A systems administrator wants to know the current status of a series of dd jobs that were started in the background three hours ago. Which of the following commands will achieve this task?

Options

  • Asudo killall -HUP dd
  • Bsudo killall dd
  • Csudo killall -TERM dd
  • Dsudo killall -USR1 dd

How the community answered

(22 responses)
  • A
    5% (1)
  • B
    5% (1)
  • C
    9% (2)
  • D
    82% (18)

Explanation

https://askubuntu.com/questions/215505/how-do-you-monitor-the-progress-of-dd You can monitor the progress of dd once it's running without halting it by using the kill command to send a signal to the process. After you start dd, open another terminal and enter either: sudo kill -USR1 $(pgrep ^dd$) Or, if you're on BSD or OS X: sudo kill -INFO $(pgrep ^dd$)

Topics

#dd command#Linux Signals#Process Management#System Monitoring

Community Discussion

No community discussion yet for this question.

Full XK0-005 Practice