When using the powerful tool "dd", it would sometimes be nice to know how much data is has already copied. By default it's not outputting anything until it's done.
[SOLUTION]
Sending a "USR1" signal to the dd process, will make it output its status:
Code: Select all
kill -USR1 <process_id_of_dd>
Code: Select all
watch -n <seconds> kill -USR1 <process_id_of_dd>