mazi-project / guides

MIT License
25 stars 2 forks source link

update command copying image for linux #7

Closed panosnethood closed 6 years ago

panosnethood commented 6 years ago

Message from commonslab.gr:

The dd command supports progress monitor with the command parameter "status=progress"

There are various places where we have this guideline and it would be nice to update it

hellekin commented 6 years ago

You may also send a USR1 signal to dd to show progress. E.g., from the dd documentation:

# Output stats every second.
while kill -s USR1 $pid 2>/dev/null; do sleep 1; done