From 4f4d3b01441d92cdc5043aadad0f8c19386769b3 Mon Sep 17 00:00:00 2001 From: Kroese Date: Wed, 19 Apr 2023 05:21:36 +0200 Subject: [PATCH] Write random --- run/disk.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/run/disk.sh b/run/disk.sh index bca09aa..c296dbb 100644 --- a/run/disk.sh +++ b/run/disk.sh @@ -48,9 +48,9 @@ if [ -f "${DATA}" ]; then if [ "$ALLOCATE" = "Z" ]; then GB=$(( (REQ + 1073741823)/1073741824 )) - echo "INFO: Filling ${GB} GB of space, please wait.." > /dev/null + echo "INFO: Writing ${GB} GB of random data, please wait.." - dd if=/dev/urandom of="${DATA}" seek="${OLD_SIZE}" count="${REQ}" bs=1M iflag=count_bytes oflag=seek_bytes + dd if=/dev/urandom of="${DATA}" seek="${OLD_SIZE}" count="${REQ}" bs=1M iflag=count_bytes oflag=seek_bytes status=none else @@ -92,9 +92,9 @@ if [ ! -f "${DATA}" ]; then if [ "$ALLOCATE" = "Z" ]; then - echo "INFO: Filling ${DISK_SIZE} of space, please wait.." + echo "INFO: Writing ${DISK_SIZE} of random data, please wait.." - dd if=/dev/urandom of="${DATA}" count="${DATA_SIZE}" bs=1M iflag=count_bytes > /dev/null + dd if=/dev/urandom of="${DATA}" count="${DATA_SIZE}" bs=1M iflag=count_bytes status=none else