From 09e4e1c8fec82557acf8c53e64dfb35bf14b22f1 Mon Sep 17 00:00:00 2001 From: Olli Graf Date: Mon, 4 Nov 2024 08:32:59 +0100 Subject: [PATCH] =?UTF-8?q?Blocksize=20wieder=20auf=208M=20erh=C3=B6ht.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backupsd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backupsd b/backupsd index 0e3afcb..0e93cc3 100755 --- a/backupsd +++ b/backupsd @@ -37,7 +37,7 @@ tdate=$(date '+%y-%m-%d') function start_backup { echo "starting Backup" -sudo dd if=${DEVICE} bs=4M | tee ${FILE} | sha256sum > ${TEMP_DIR}/sdcard.sha256 +sudo dd if=${DEVICE} bs=8M | tee ${FILE} | sha256sum > ${TEMP_DIR}/sdcard.sha256 echo "validating the image..."