From b02bb18e1d5a0e0082ac2ae564b17347d285e4b3 Mon Sep 17 00:00:00 2001 From: TommyTran732 <57488583+tommytran732@users.noreply.github.com> Date: Sun, 25 Jul 2021 07:52:26 +0000 Subject: [PATCH] Update install.sh --- install.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/install.sh b/install.sh index d88da92..5e06f39 100644 --- a/install.sh +++ b/install.sh @@ -341,16 +341,16 @@ echo "" >> /mnt/etc/bash.bashrc echo "umask 077" >> /mnt/etc/bash.bashrc # Setting up ZRAM -MEM=$(awk '/^Mem/ {print $2}' <(free -m)) -if [ "${MEM}" -ge "8192" ]; then +MEMSIZE=$(awk '/^Mem/ {print $2}' <(free -m)) +if [ "${MEMSIZE}" -ge "8192" ]; then ZRAMSIZE=8192 else - ZRAMSIZE=${MEM} + ZRAMSIZE=${MEMSIZE} fi echo 'zram' > /mnt/etc/modules-load.d/zram.conf echo 'options zram num_devices=1' > /mnt/etc/modprobe.d/zram.conf -echo 'KERNEL=="zram0", ATTR{disksize}="${ZRAMSIZE}M" RUN="/usr/bin/mkswap /dev/zram0", TAG+="systemd"' > /mnt/etc/udev/rules.d/99-zram.rules +echo 'KERNEL=="zram0", ATTR{disksize}="'${ZRAMSIZE}'M" RUN="/usr/bin/mkswap /dev/zram0", TAG+="systemd"' > /mnt/etc/udev/rules.d/99-zram.rules echo '# ZRAM' >> /mnt/etc/fstab echo '/dev/zram0 none swap defaults 0 0' >> /mnt/etc/fstab