From 29720e8e065f5a80f819beb87f87593e0886f322 Mon Sep 17 00:00:00 2001 From: Kroese Date: Wed, 19 Apr 2023 05:22:28 +0200 Subject: [PATCH] Write random --- run/install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/run/install.sh b/run/install.sh index daa6ece..14bb9b8 100644 --- a/run/install.sh +++ b/run/install.sh @@ -127,9 +127,9 @@ if [ "$ALLOCATE" != "Z" ]; then else GB=$(( (SYSTEM_SIZE + 1073741823)/1073741824 )) - echo "Install: Filling ${GB} GB of space, please wait.." + echo "Install: Writing ${GB} GB of random data, please wait.." - dd if=/dev/urandom of="${SYSTEM}" count="${SYSTEM_SIZE}" bs=1M iflag=count_bytes > /dev/null + dd if=/dev/urandom of="${SYSTEM}" count="${SYSTEM_SIZE}" bs=1M iflag=count_bytes status=none fi