Loading src/config.sh +69 −9 Original line number Diff line number Diff line Loading @@ -14,28 +14,88 @@ ARGS=$(echo "$ARGS" | sed 's/\t/ /g' | tr -s ' ') # Check available memory as the very last step if [[ "$RAM_CHECK" != [Nn]* ]]; then RAM_AVAIL=$(free -b | grep -m 1 Mem: | awk '{print $7}') if [[ "$RAM_CHECK" != [Nn]* && "${RAM_SIZE,,}" != "max" && "${RAM_SIZE,,}" != "half" ]]; then AVAIL_MEM=$(formatBytes "$RAM_AVAIL") if (( (RAM_WANTED + RAM_SPARE) > RAM_AVAIL )); then msg="Your configured RAM_SIZE of ${RAM_SIZE/G/ GB} is too high for the $AVAIL_MEM of memory available, please set a lower value." [[ "${FS,,}" != "zfs" ]] && error "$msg" && exit 17 info "$msg" msg="Your configured RAM_SIZE of ${RAM_SIZE/G/ GB} is too high for the $AVAIL_MEM of memory available," if [[ "${FS,,}" == "zfs" ]]; then info "$msg but since ZFS is active this will be ignored." else RAM_SIZE="max" warn "$msg it will automatically be adjusted to a lower amount." fi else if (( (RAM_WANTED + (RAM_SPARE * 3)) > RAM_AVAIL )); then msg="your configured RAM_SIZE of ${RAM_SIZE/G/ GB} is very close to the $AVAIL_MEM of memory available, please consider a lower value." if [[ "${FS,,}" != "zfs" ]]; then warn "$msg" msg="your configured RAM_SIZE of ${RAM_SIZE/G/ GB} is very close to the $AVAIL_MEM of memory available," if [[ "${FS,,}" == "zfs" ]]; then info "$msg but since ZFS is active this will be ignored." else info "$msg" warn "$msg please consider a lower amount." fi fi fi fi if [[ "${RAM_SIZE,,}" == "half" ]]; then RAM_WANTED=$(( RAM_AVAIL / 2 )) RAM_WANTED=$(( RAM_WANTED / 1073741825 )) if (( "$RAM_WANTED" < 1 )); then RAM_WANTED=$(( RAM_AVAIL / 2 )) RAM_WANTED=$(( RAM_WANTED / 1048577 )) RAM_SIZE="${RAM_WANTED}M" else RAM_SIZE="${RAM_WANTED}G" fi fi if [[ "${RAM_SIZE,,}" == "max" ]]; then RAM_WANTED=$(( RAM_AVAIL - (RAM_SPARE * 3) )) RAM_WANTED=$(( RAM_WANTED / 1073741825 )) if (( "$RAM_WANTED" < 1 )); then RAM_WANTED=$(( RAM_AVAIL - (RAM_SPARE * 2) )) RAM_WANTED=$(( RAM_WANTED / 1073741825 )) if (( "$RAM_WANTED" < 1 )); then RAM_WANTED=$(( RAM_AVAIL - RAM_SPARE )) RAM_WANTED=$(( RAM_WANTED / 1073741825 )) if (( "$RAM_WANTED" < 1 )); then RAM_WANTED=$(( RAM_AVAIL - RAM_SPARE )) RAM_WANTED=$(( RAM_WANTED / 1048577 )) if (( "$RAM_WANTED" < 1 )); then RAM_WANTED=$(( RAM_AVAIL )) RAM_WANTED=$(( RAM_WANTED / 1048577 )) fi RAM_SIZE="${RAM_WANTED}M" else RAM_SIZE="${RAM_WANTED}G" fi else RAM_SIZE="${RAM_WANTED}G" fi else RAM_SIZE="${RAM_WANTED}G" fi fi if [[ "$DEBUG" == [Yy1]* ]]; then printf "QEMU arguments:\n\n%s\n\n" "${ARGS// -/$'\n-'}" fi Loading src/reset.sh +10 −21 Original line number Diff line number Diff line Loading @@ -105,11 +105,7 @@ RAM_TOTAL=$(free -b | grep -m 1 Mem: | awk '{print $2}') RAM_SIZE="${RAM_SIZE// /}" [ -z "$RAM_SIZE" ] && error "RAM_SIZE not specified!" && exit 16 if [[ "${RAM_SIZE,,}" == "max" ]]; then RAM_WANTED=$(( RAM_AVAIL - RAM_SPARE - RAM_SPARE )) RAM_WANTED=$(( RAM_WANTED / 1073741825 )) RAM_SIZE="${RAM_WANTED}G" fi if [[ "${RAM_SIZE,,}" != "max" && "${RAM_SIZE,,}" != "half" ]]; then if [ -z "${RAM_SIZE//[0-9. ]}" ]; then [ "${RAM_SIZE%%.*}" -lt "130" ] && RAM_SIZE="${RAM_SIZE}G" || RAM_SIZE="${RAM_SIZE}M" Loading @@ -120,6 +116,8 @@ RAM_SIZE=$(echo "${RAM_SIZE^^}" | sed 's/MB/M/g;s/GB/G/g;s/TB/T/g') RAM_WANTED=$(numfmt --from=iec "$RAM_SIZE") [ "$RAM_WANTED" -lt "136314880 " ] && error "RAM_SIZE is too low: $RAM_SIZE" && exit 16 fi # Print system info SYS="${SYS/-generic/}" FS="${FS/UNKNOWN //}" Loading @@ -133,15 +131,6 @@ TOTAL_MEM=$(formatBytes "$RAM_TOTAL" "up") echo "❯ CPU: ${CPU} | RAM: ${AVAIL_MEM/ GB/}/$TOTAL_MEM | DISK: $SPACE_GB (${FS}) | KERNEL: ${SYS}..." echo # Check available memory if [[ "$RAM_CHECK" != [Nn]* ]] && (( (RAM_WANTED + RAM_SPARE) > RAM_AVAIL )); then AVAIL_MEM=$(formatBytes "$RAM_AVAIL") msg="Your configured RAM_SIZE of ${RAM_SIZE/G/ GB} is too high for the $AVAIL_MEM of memory available, please set a lower value." [[ "${FS,,}" != "zfs" ]] && error "$msg" && exit 17 info "$msg" fi # Check KVM support if [[ "${PLATFORM,,}" == "x64" ]]; then Loading Loading
src/config.sh +69 −9 Original line number Diff line number Diff line Loading @@ -14,28 +14,88 @@ ARGS=$(echo "$ARGS" | sed 's/\t/ /g' | tr -s ' ') # Check available memory as the very last step if [[ "$RAM_CHECK" != [Nn]* ]]; then RAM_AVAIL=$(free -b | grep -m 1 Mem: | awk '{print $7}') if [[ "$RAM_CHECK" != [Nn]* && "${RAM_SIZE,,}" != "max" && "${RAM_SIZE,,}" != "half" ]]; then AVAIL_MEM=$(formatBytes "$RAM_AVAIL") if (( (RAM_WANTED + RAM_SPARE) > RAM_AVAIL )); then msg="Your configured RAM_SIZE of ${RAM_SIZE/G/ GB} is too high for the $AVAIL_MEM of memory available, please set a lower value." [[ "${FS,,}" != "zfs" ]] && error "$msg" && exit 17 info "$msg" msg="Your configured RAM_SIZE of ${RAM_SIZE/G/ GB} is too high for the $AVAIL_MEM of memory available," if [[ "${FS,,}" == "zfs" ]]; then info "$msg but since ZFS is active this will be ignored." else RAM_SIZE="max" warn "$msg it will automatically be adjusted to a lower amount." fi else if (( (RAM_WANTED + (RAM_SPARE * 3)) > RAM_AVAIL )); then msg="your configured RAM_SIZE of ${RAM_SIZE/G/ GB} is very close to the $AVAIL_MEM of memory available, please consider a lower value." if [[ "${FS,,}" != "zfs" ]]; then warn "$msg" msg="your configured RAM_SIZE of ${RAM_SIZE/G/ GB} is very close to the $AVAIL_MEM of memory available," if [[ "${FS,,}" == "zfs" ]]; then info "$msg but since ZFS is active this will be ignored." else info "$msg" warn "$msg please consider a lower amount." fi fi fi fi if [[ "${RAM_SIZE,,}" == "half" ]]; then RAM_WANTED=$(( RAM_AVAIL / 2 )) RAM_WANTED=$(( RAM_WANTED / 1073741825 )) if (( "$RAM_WANTED" < 1 )); then RAM_WANTED=$(( RAM_AVAIL / 2 )) RAM_WANTED=$(( RAM_WANTED / 1048577 )) RAM_SIZE="${RAM_WANTED}M" else RAM_SIZE="${RAM_WANTED}G" fi fi if [[ "${RAM_SIZE,,}" == "max" ]]; then RAM_WANTED=$(( RAM_AVAIL - (RAM_SPARE * 3) )) RAM_WANTED=$(( RAM_WANTED / 1073741825 )) if (( "$RAM_WANTED" < 1 )); then RAM_WANTED=$(( RAM_AVAIL - (RAM_SPARE * 2) )) RAM_WANTED=$(( RAM_WANTED / 1073741825 )) if (( "$RAM_WANTED" < 1 )); then RAM_WANTED=$(( RAM_AVAIL - RAM_SPARE )) RAM_WANTED=$(( RAM_WANTED / 1073741825 )) if (( "$RAM_WANTED" < 1 )); then RAM_WANTED=$(( RAM_AVAIL - RAM_SPARE )) RAM_WANTED=$(( RAM_WANTED / 1048577 )) if (( "$RAM_WANTED" < 1 )); then RAM_WANTED=$(( RAM_AVAIL )) RAM_WANTED=$(( RAM_WANTED / 1048577 )) fi RAM_SIZE="${RAM_WANTED}M" else RAM_SIZE="${RAM_WANTED}G" fi else RAM_SIZE="${RAM_WANTED}G" fi else RAM_SIZE="${RAM_WANTED}G" fi fi if [[ "$DEBUG" == [Yy1]* ]]; then printf "QEMU arguments:\n\n%s\n\n" "${ARGS// -/$'\n-'}" fi Loading
src/reset.sh +10 −21 Original line number Diff line number Diff line Loading @@ -105,11 +105,7 @@ RAM_TOTAL=$(free -b | grep -m 1 Mem: | awk '{print $2}') RAM_SIZE="${RAM_SIZE// /}" [ -z "$RAM_SIZE" ] && error "RAM_SIZE not specified!" && exit 16 if [[ "${RAM_SIZE,,}" == "max" ]]; then RAM_WANTED=$(( RAM_AVAIL - RAM_SPARE - RAM_SPARE )) RAM_WANTED=$(( RAM_WANTED / 1073741825 )) RAM_SIZE="${RAM_WANTED}G" fi if [[ "${RAM_SIZE,,}" != "max" && "${RAM_SIZE,,}" != "half" ]]; then if [ -z "${RAM_SIZE//[0-9. ]}" ]; then [ "${RAM_SIZE%%.*}" -lt "130" ] && RAM_SIZE="${RAM_SIZE}G" || RAM_SIZE="${RAM_SIZE}M" Loading @@ -120,6 +116,8 @@ RAM_SIZE=$(echo "${RAM_SIZE^^}" | sed 's/MB/M/g;s/GB/G/g;s/TB/T/g') RAM_WANTED=$(numfmt --from=iec "$RAM_SIZE") [ "$RAM_WANTED" -lt "136314880 " ] && error "RAM_SIZE is too low: $RAM_SIZE" && exit 16 fi # Print system info SYS="${SYS/-generic/}" FS="${FS/UNKNOWN //}" Loading @@ -133,15 +131,6 @@ TOTAL_MEM=$(formatBytes "$RAM_TOTAL" "up") echo "❯ CPU: ${CPU} | RAM: ${AVAIL_MEM/ GB/}/$TOTAL_MEM | DISK: $SPACE_GB (${FS}) | KERNEL: ${SYS}..." echo # Check available memory if [[ "$RAM_CHECK" != [Nn]* ]] && (( (RAM_WANTED + RAM_SPARE) > RAM_AVAIL )); then AVAIL_MEM=$(formatBytes "$RAM_AVAIL") msg="Your configured RAM_SIZE of ${RAM_SIZE/G/ GB} is too high for the $AVAIL_MEM of memory available, please set a lower value." [[ "${FS,,}" != "zfs" ]] && error "$msg" && exit 17 info "$msg" fi # Check KVM support if [[ "${PLATFORM,,}" == "x64" ]]; then Loading