gameservergame-servergame-servershacktoberfestdedicated-game-serversgamelinuxgsmserverbashgaminglinuxmultiplayer-game-servershell
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
2.6 KiB
79 lines
2.6 KiB
#!/bin/bash
|
|
# LinuxGSM check_system_requirements.sh
|
|
# Author: Daniel Gibbs
|
|
# Contributors: https://linuxgsm.com/contrib
|
|
# Website: https://linuxgsm.com
|
|
# Description: Checks RAM requirements.
|
|
|
|
moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
|
|
|
|
info_distro.sh
|
|
|
|
if [[ "${arch}" != "x86_64" && "${arch}" != "i386" && "${arch}" != "i686" ]]; then
|
|
echo -e "${red}Error: Only x86 type architectures are supported. Detected architecture: ${arch}${default}"
|
|
fn_script_log_error "Only x86 type architectures are supported. Detected architecture: ${arch}"
|
|
core_exit.sh
|
|
fi
|
|
|
|
if [ "${shortname}" == "ark" ]; then
|
|
ramrequirementgb="7"
|
|
elif [ "${shortname}" == "arma3" ]; then
|
|
ramrequirementgb="2"
|
|
elif [ "${shortname}" == "armar" ]; then
|
|
ramrequirementgb="3"
|
|
elif [ "${shortname}" == "bt" ]; then
|
|
ramrequirementgb="1"
|
|
elif [ "${shortname}" == "cc" ]; then
|
|
ramrequirementgb="1"
|
|
elif [ "${shortname}" == "dayz" ]; then
|
|
ramrequirementgb="5"
|
|
elif [ "${shortname}" == "dodr" ]; then
|
|
ramrequirementgb="2"
|
|
elif [ "${shortname}" == "hw" ]; then
|
|
ramrequirementgb="3"
|
|
elif [ "${shortname}" == "mc" ]; then
|
|
ramrequirementgb="1"
|
|
elif [ "${shortname}" == "pmc" ]; then
|
|
ramrequirementgb="2"
|
|
elif [ "${shortname}" == "mh" ]; then
|
|
ramrequirementgb="4"
|
|
elif [ "${shortname}" == "ns2" ] || [ "${shortname}" == "ns2c" ]; then
|
|
ramrequirementgb="1"
|
|
elif [ "${shortname}" == "squad44" ]; then
|
|
ramrequirementgb="2"
|
|
elif [ "${shortname}" == "pvr" ]; then
|
|
ramrequirementgb="1"
|
|
elif [ "${shortname}" == "pz" ]; then
|
|
ramrequirementgb="3"
|
|
elif [ "${shortname}" == "rust" ]; then
|
|
ramrequirementgb="9"
|
|
elif [ "${shortname}" == "sdtd" ]; then
|
|
ramrequirementgb="4"
|
|
elif [ "${shortname}" == "sf" ]; then
|
|
ramrequirementgb="12"
|
|
elif [ "${shortname}" == "squad" ]; then
|
|
ramrequirementgb="2"
|
|
elif [ "${shortname}" == "sm" ]; then
|
|
ramrequirementgb="10"
|
|
elif [ "${shortname}" == "st" ]; then
|
|
ramrequirementgb="1"
|
|
elif [ "${shortname}" == "stn" ]; then
|
|
ramrequirementgb="3"
|
|
elif [ "${shortname}" == "tu" ]; then
|
|
ramrequirementgb="2"
|
|
elif [ "${shortname}" == "vh" ]; then
|
|
ramrequirementgb="2"
|
|
else
|
|
ramrequirementgb="0.5"
|
|
fi
|
|
|
|
# If the game or engine has a minimum RAM Requirement, compare it to system's available RAM.
|
|
if [ "${ramrequirementgb}" ]; then
|
|
if (($(echo "${physmemtotalgb} < ${ramrequirementgb}" | bc -l))); then
|
|
fn_print_dots "Checking RAM"
|
|
fn_print_warn_nl "Checking RAM: Minumum RAM requirements not met"
|
|
fn_print_nl "* ${ramrequirementgb}G is required, but only ${physmemtotal} is available."
|
|
fn_print_nl "* ${gamename} server may fail to run or experience poor performance."
|
|
fn_sleep_time_5
|
|
fi
|
|
fi
|
|
|