SdcardBackupRestore icon indicating copy to clipboard operation
SdcardBackupRestore copied to clipboard

progress meter

Open fone opened this issue 8 years ago • 1 comments

thanks for the cool script.

any chance on adding something like a progress bar during the copy/restore? it may not know percentage but could maybe tell you how much has been transferred.

fone avatar Sep 01 '16 14:09 fone

Hi @fone , as far as I know you can watch the amount of data being copied from the SD card. Change this line to:

sudo dd bs=4M if=${DISK} status=progress | gzip > raspbian_backup_image`date +%d%m%y`.gz

The status=progress option will show you the amount of data that's being transferred from the SD card.

vincurekf avatar Jun 07 '18 19:06 vincurekf