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…
Question
Options
- Asudo killall -HUP dd
- Bsudo killall dd
- Csudo killall -TERM dd
- Dsudo killall -USR1 dd
How the community answered
(22 responses)- A5% (1)
- B5% (1)
- C9% (2)
- D82% (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
Community Discussion
No community discussion yet for this question.