This commit is contained in:
Patrick Schleizer 2024-07-18 14:04:00 -04:00
parent a5eed00eba
commit cac5bbad99
No known key found for this signature in database
GPG Key ID: CB8D50BB77BB3C48

View File

@ -3,8 +3,13 @@
## Lower parallel compilation jobs to 1 if less than 2 GB RAM to avoid freezing of virtual machines.
## This does not necessarily belong into security-misc.
##
## Example here:
## https://forums.whonix.org/t/linux-kernel-runtime-guard-lkrg-linux-kernel-runtime-integrity-checking-and-exploit-detection/8477/26
##
## This might no longer be possible in the future. See:
## "Stop handling dkms.conf as a bash/shell script"
## https://github.com/dell/dkms/issues/414
ENOUGH_RAM="1950"
total_ram="$(free -m | sed -n -e '/^Mem:/s/^[^0-9]*\([0-9]*\) .*/\1/p')"
if [ "$total_ram" -ge "$ENOUGH_RAM" ]; then