While 'dd' is running, open a new terminal. First let's get the PID:
# ps -A|grep ddThen, do this:
# kill -USR1 <pid>Now, see the terminal where 'dd' is running. You would get some details about the transfer progress. If you are really impatient, you can run this command every 20 seconds with 'watch':
watch -n 20 kill -USR1 <pid>
0 comments:
Post a Comment