Linux tweak

This commit is contained in:
Brian Zalewski 2023-12-25 02:25:59 +00:00
parent 569dac5953
commit db8c2dbcb2

View file

@ -236,9 +236,12 @@ ensureUserGroup() {
# increasing the `vm.max_map_count`. According to a [RedHat article](https://access.redhat.com/solutions/99913), the default value is `65530`. # increasing the `vm.max_map_count`. According to a [RedHat article](https://access.redhat.com/solutions/99913), the default value is `65530`.
# This function increases that value to `262144` if `sysctl` is available on the system. # This function increases that value to `262144` if `sysctl` is available on the system.
increaseMapCount() { increaseMapCount() {
if command -v sysctl > /dev/null; then if [ ! -d /Applications ] && [ ! -d /System ]; then
logg info 'Increasing vm.max_map_count size to 262144' ### Linux
sudo sysctl -w vm.max_map_count=262144 > /dev/null if command -v sysctl > /dev/null; then
logg info 'Increasing vm.max_map_count size to 262144'
sudo sysctl -w vm.max_map_count=262144 > /dev/null
fi
fi fi
} }