From 62f247ee570746c7161e11e50056b1b5bf9c2493 Mon Sep 17 00:00:00 2001 From: Kron4ek Date: Sat, 15 May 2021 15:59:07 +0500 Subject: [PATCH] Use lower compression level In my testing, compression using level 14 is almost 3x faster than level 19, while compression ratio is only about 2% lower. In my opinion, it's definitely worth it. --- conty-start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conty-start.sh b/conty-start.sh index 6c03d63..a315676 100755 --- a/conty-start.sh +++ b/conty-start.sh @@ -201,7 +201,7 @@ EOF # Create a squashfs image clear echo "Creating a squashfs image" - bash "${script}" mksquashfs sqfs image -b 256K -comp zstd -Xcompression-level 19 + bash "${script}" mksquashfs sqfs image -b 256K -comp zstd -Xcompression-level 14 # Combine into a single executable clear