dd does show progress, you just need to ask. On a separate tty/console find dd PID whilst it's running with
pgrep -l '^dd$'
Then execute "kill -USR1 $PID"
Return to the console/tty where dd is running and you should see the stats.
Or just run that kill command with "watch" to see stats every X seconds.
watch -n $x kill -USR1 $PID
@hyperbole started
London Fixed Gear and Single-Speed is a community of predominantly fixed gear and single-speed cyclists in and around London, UK.
This site is supported almost exclusively by donations. Please consider donating a small amount regularly.
dd does show progress, you just need to ask.
On a separate tty/console find dd PID whilst it's running with
pgrep -l '^dd$'
Then execute "kill -USR1 $PID"
Return to the console/tty where dd is running and you should see the stats.
Or just run that kill command with "watch" to see stats every X seconds.
watch -n $x kill -USR1 $PID