Skip to content

Show progress during dd

If you need to show progress during dd copy, you can firstly find PID with

ps -A|grep dd

then you can send signal USR1 to this process with the following command

kill -USR1 “DDPID”

If you like to run automaticaly every x second you can use the command watch as

watch -n 5 kill -USR1 “DDPID

Leave a Reply