From 841bfaffe457c9fc9966153cbd798473710c18ef Mon Sep 17 00:00:00 2001 From: q3aql Date: Mon, 10 Mar 2025 15:23:05 +0100 Subject: [PATCH] Size block to 1M --- dd-gz | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dd-gz b/dd-gz index c4d2ca8..6f9b083 100755 --- a/dd-gz +++ b/dd-gz @@ -79,7 +79,7 @@ create_backup() { echo "$(basename $0) is running backup" echo "Device: $device_input" echo "Output: $output_file" - dd if="$device_input" status=progress | gzip -9 > "$output_file" + dd if="$device_input" bs=1M status=progress | gzip -9 > "$output_file" } restore_backup() { @@ -105,7 +105,7 @@ restore_backup() { echo "$(basename $0) is restoring backup" echo "Input: $input_file" echo "Device: $device_output" - gzip -d -k -c "$input_file" | dd of="$device_output" status=progress + gzip -d -k -c "$input_file" | dd of="$device_output" bs=1M status=progress } # Main