While a long `dd’ is running, how can you get a progress update?
kill -USR1 `pidof dd`
This will send the SIGUSR1 signal to dd, which according to it’s man page causes it print it’s progress to STDERR. Useful to know..
You must be logged in to post a comment.