Loading run/install.sh +6 −1 Original line number Diff line number Diff line Loading @@ -120,8 +120,13 @@ if ! fallocate -l "${SYSTEM_SIZE}" "${SYSTEM}"; then echo "ERROR: Could not allocate a file for the system disk." && exit 88 fi if [ "$ALLOCATE" = "Z" ]; then echo "Install: Preallocating 4 GB of diskspace..." dd if=/dev/urandom of="${SYSTEM}" count="${SYSTEM_SIZE}" bs=1M iflag=count_bytes status=none fi # Check if file exists if [ ! -f "${SYSTEM}" ]; then echo "ERROR: System disk does not exist ($SYSTEM)" && exit 89 Loading Loading
run/install.sh +6 −1 Original line number Diff line number Diff line Loading @@ -120,8 +120,13 @@ if ! fallocate -l "${SYSTEM_SIZE}" "${SYSTEM}"; then echo "ERROR: Could not allocate a file for the system disk." && exit 88 fi if [ "$ALLOCATE" = "Z" ]; then echo "Install: Preallocating 4 GB of diskspace..." dd if=/dev/urandom of="${SYSTEM}" count="${SYSTEM_SIZE}" bs=1M iflag=count_bytes status=none fi # Check if file exists if [ ! -f "${SYSTEM}" ]; then echo "ERROR: System disk does not exist ($SYSTEM)" && exit 89 Loading