Browse Source

Updated glibcfix function

Updated glibcfix to reflect recent research on glibc versions required
for different servers
pull/254/merge
Daniel Gibbs 11 years ago
parent
commit
4826bef5dc
  1. 182
      functions/fn_glibcfix

182
functions/fn_glibcfix

@ -2,104 +2,102 @@
# LGSM fn_glibcfix function # LGSM fn_glibcfix function
# Author: Daniel Gibbs # Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk # Website: http://danielgibbs.co.uk
# Version: 191114 # Version: 231114
fn_glibcfixmsg(){ fn_glibcfixmsg(){
echo "Detected ${gamename}" echo "Detected ${gamename}"
sleep 1 sleep 1
echo "" echo ""
echo "GLIBC Fix required"
echo "============================"
sleep 1
echo -e "\e[0;31mWARNING!\e[0;39m ${gamename} requires GLIBC_${glibcversion} or above"
sleep 1
echo ""
echo -e "Currently installed:\e[0;31m GLIBC_$(ldd --version |grep ldd|awk '{print $NF}')\e[0;39m"
echo -e "Required: =>\e[0;32m GLIBC_${glibcversion}\e[0;39m"
echo ""
sleep 1
echo "The installer will now detect and download the required files to allow ${gamename} server to run on a distro with less than GLIBC_${glibcversion}."
echo "note: This will NOT upgrade GLIBC on your system."
sleep 1
echo ""
echo "Downloading Required files"
echo "================================="
sleep 1
} }
if [ "${gamename}" == "Insurgency" ]||[ "${gamename}" == "Garrys's Mod" ]||[ "${gamename}" == "Natural Selection 2" ]||[ "${gamename}" == "No More Room in Hell" ]||[ "${gamename}" == "Blade Symphony" ]||[ "${gamename}" == "Fistful of Frags" ]||[ "${gamename}" == "ARMA 3" ]; then if [ -z $(command -v ldd) ]; then
if [ -z $(command -v ldd) ]; then echo ""
echo "" echo -e "\r\033[K\e[0;31mFAIL\e[0;39m GLIBC is not detected."
echo -e "\r\033[K\e[0;31mFAIL\e[0;39m GLIBC is not detected." sleep 1
sleep 1 echo "Install GLIBC and retry installation"
echo "Install GLIBC and retry installation" sleep 1
sleep 1 echo ""
echo "" while true; do
while true; do read -p "Continue install? [y/N]" yn
read -p "Continue install? [y/N]" yn case $yn in
case $yn in [Yy]* ) break;;
[Yy]* ) break;; [Nn]* ) echo Exiting; exit;;
[Nn]* ) echo Exiting; exit;; * ) echo "Please answer yes or no.";;
* ) echo "Please answer yes or no.";; esac
esac done
done elif [ "$(ldd --version | sed -n '1 p' | tr -cd [:digit:] | tail -c 3)" -lt 213 ]; then
elif [ "$(ldd --version | sed -n '1 p' | tr -cd [:digit:] | tail -c 3)" -lt 215 ]; then glibcversion="2.13"
echo "GLIBC Fix required" fn_glibcfixmsg
echo "============================" # ARMA 3
sleep 1 if [ "${gamename}" == "ARMA 3" ]; then
echo -e "\e[0;31mWARNING!\e[0;39m ${gamename} requires GLIBC_2.15 or above" cp -v "${rootdir}/steamcmd/linux32/libstdc++.so.6" "${filesdir}/libstdc++.so.6"
sleep 1 # Just Cause 2
echo "" elif [ "${gamename}" == "Just Cause 2" ]; then
echo "Currently installed: GLIBC_$(ldd --version |grep ldd|awk '{print $NF}')" cp -v "${rootdir}/steamcmd/linux32/libstdc++.so.6" "${filesdir}/libstdc++.so.6"
echo "Required: => GLIBC_2.15" else
echo "" echo "error: Unable to detect game. Fix not applied"
sleep 1 fi
echo "The installer will now detect and download the required files to allow ${gamename} server to run on a distro with GLIBC_2.14 or less." sleep 1
echo "note: This will NOT upgrade GLIBC on your system" echo ""
sleep 1 echo "GLIBC fix has been applied!"
echo "" sleep 1
echo "Downloading Required files" echo ""
echo "=================================" elif [ "$(ldd --version | sed -n '1 p' | tr -cd [:digit:] | tail -c 3)" -lt 215 ]; then
sleep 1 glibcversion="2.15"
if [ "${gamename}" == "Insurgency" ]; then fn_glibcfixmsg
fn_glibcfixmsg # Blade Symphony
cd "${filesdir}/bin" if [ "${gamename}" == "Blade Symphony" ]; then
wget -nv -N --no-check-certificate https://github.com/dgibbs64/linuxgameservers/raw/master/Insurgency/dependencies/libc.so.6 cp -v "${rootdir}/steamcmd/linux32/libstdc++.so.6" "${filesdir}/libstdc++.so.6"
wget -nv -N --no-check-certificate https://github.com/dgibbs64/linuxgameservers/raw/master/Insurgency/dependencies/librt.so.1 # Fistful of Frags
wget -nv -N --no-check-certificate https://github.com/dgibbs64/linuxgameservers/raw/master/Insurgency/dependencies/libpthread.so.0 elif [ "${gamename}" == "Fistful of Frags" ]; then
sleep 1 cd "${filesdir}"
elif [ "${gamename}" == "Garrys's Mod" ]; then wget -nv -N --no-check-certificate https://github.com/dgibbs64/linuxgameservers/raw/master/FistfulOfFrags/dependencies/libm.so.6
fn_glibcfixmsg # Garrys's Mod
cd "${filesdir}/bin" elif [ "${gamename}" == "Garrys's Mod" ]; then
wget -nv -N --no-check-certificate https://github.com/dgibbs64/linuxgameservers/raw/master/GarrysMod/dependencies/libc.so.6 cd "${filesdir}/bin"
wget -nv -N --no-check-certificate https://github.com/dgibbs64/linuxgameservers/raw/master/GarrysMod/dependencies/libm.so.6 wget -nv -N --no-check-certificate https://github.com/dgibbs64/linuxgameservers/raw/master/GarrysMod/dependencies/libc.so.6
wget -nv -N --no-check-certificate https://github.com/dgibbs64/linuxgameservers/raw/master/GarrysMod/dependencies/libpthread.so.0 wget -nv -N --no-check-certificate https://github.com/dgibbs64/linuxgameservers/raw/master/GarrysMod/dependencies/libm.so.6
cp -v "${rootdir}/steamcmd/linux32/libstdc++.so.6" "${filesdir}/libstdc++.so.6" wget -nv -N --no-check-certificate https://github.com/dgibbs64/linuxgameservers/raw/master/GarrysMod/dependencies/libpthread.so.0
sleep 1 cp -v "${rootdir}/steamcmd/linux32/libstdc++.so.6" "${filesdir}/libstdc++.so.6"
echo "" # Insurgency
elif [ "${gamename}" == "Natural Selection 2" ]; then elif [ "${gamename}" == "Insurgency" ]; then
fn_glibcfixmsg cd "${filesdir}/bin"
cd "${filesdir}" wget -nv -N --no-check-certificate https://github.com/dgibbs64/linuxgameservers/raw/master/Insurgency/dependencies/libc.so.6
wget -nv -N --no-check-certificate https://github.com/dgibbs64/linuxgameservers/raw/master/NaturalSelection2/dependencies/libm.so.6 wget -nv -N --no-check-certificate https://github.com/dgibbs64/linuxgameservers/raw/master/Insurgency/dependencies/librt.so.1
cp -v "${rootdir}/steamcmd/linux32/libstdc++.so.6" "${filesdir}/libstdc++.so.6" wget -nv -N --no-check-certificate https://github.com/dgibbs64/linuxgameservers/raw/master/Insurgency/dependencies/libpthread.so.0
sleep 1 # Natural Selection 2
echo "" elif [ "${gamename}" == "Natural Selection 2" ]; then
elif [ "${gamename}" == "No More Room in Hell" ]; then cd "${filesdir}"
fn_glibcfixmsg wget -nv -N --no-check-certificate https://github.com/dgibbs64/linuxgameservers/raw/master/NaturalSelection2/dependencies/libm.so.6
cd "${filesdir}" cp -v "${rootdir}/steamcmd/linux32/libstdc++.so.6" "${filesdir}/libstdc++.so.6"
wget -nv -N --no-check-certificate https://github.com/dgibbs64/linuxgameservers/raw/master/NoMoreRoomInHell/dependencies/libm.so.6 # No More Room in Hell
cp -v "${rootdir}/steamcmd/linux32/libstdc++.so.6" "${filesdir}/libstdc++.so.6" elif [ "${gamename}" == "No More Room in Hell" ]; then
sleep 1 cd "${filesdir}"
echo "" wget -nv -N --no-check-certificate https://github.com/dgibbs64/linuxgameservers/raw/master/NoMoreRoomInHell/dependencies/libm.so.6
elif [ "${gamename}" == "Blade Symphony" ]; then cp -v "${rootdir}/steamcmd/linux32/libstdc++.so.6" "${filesdir}/libstdc++.so.6"
fn_glibcfixmsg else
cp -v "${rootdir}/steamcmd/linux32/libstdc++.so.6" "${filesdir}/libstdc++.so.6" echo "error: Unable to detect game. Fix not applied"
sleep 1
echo ""
elif [ "${gamename}" == "Fistful of Frags" ]; then
echo "Detected ${gamename}"
sleep 1
echo "Downloading files for ${gamename} GLIBC Fix"
sleep 1
cd "${filesdir}"
wget -nv -N --no-check-certificate https://github.com/dgibbs64/linuxgameservers/raw/master/FistfulOfFrags/dependencies/libm.so.6
sleep 1
echo ""
elif [ "${gamename}" == "ARMA 3" ]; then
fn_glibcfixmsg
cp -v "${rootdir}/steamcmd/linux32/libstdc++.so.6" "${filesdir}/libstdc++.so.6"
sleep 1
echo ""
else
echo "error: Unable to detect game. Fix not applied"
fi
echo "GLIBC fix has been applied!"
sleep 1
echo ""
fi fi
else sleep 1
sleep 0.1 echo ""
echo "GLIBC fix has been applied!"
sleep 1
echo ""
fi fi
Loading…
Cancel
Save