#!/bin/bash # LGSM info_distro.sh function # Author: Daniel Gibbs # Website: http://gameservermanagers.com lgsm_version="211215" # Description: Variables providing useful info on the Operating System such as disk and performace info. # Used for command_details.sh, command_debug.sh and email.sh. ## Distro infomation # Returns architecture, kernel and distro/os. arch=$(uname -m) kernel=$(uname -r) if [ -n "$(command -v lsb_release)" ]; then os=$(lsb_release -s -d) elif [ -f /etc/debian_version ]; then os="Debian $(cat /etc/debian_version)" elif [ -f /etc/redhat-release ]; then os=$(cat /etc/redhat-release) else os="$(uname -s) $(uname -r)" fi # Glibc version number # e.g: 1.17 glibcv=$(ldd --version |grep ldd|awk '{print $NF}') # tmux version # e.g: tmux 1.6 if [ -z "$(command -v tmux)" ]; then tmuxv="\e[0;31mNOT INSTALLED!\e[0m" elif [ "$(tmux -V|sed "s/tmux //"|sed -n '1 p'|tr -cd '[:digit:]')" -lt "16" ]; then tmuxv="$(tmux -V) (>= 1.6 required for console log)" else tmuxv=$(tmux -V) fi ## Performance # Average server load load=$(uptime|awk -F 'load average: ' '{ print $2 }') # Memory # Older versions of free do not support -h option. if [ "$(free -h > /dev/null 2>&1; echo $?)" -ne "0" ]; then option="-m" else option="-h" fi physmemtotal=$(free ${option} | awk '/Mem:/ {print $2}') physmemused=$(free ${option} | awk '/Mem:/ {print $3}') physmemfree=$(free ${option} | awk '/Mem:/ {print $4}') swaptotal=$(free ${option} | awk '/Swap:/ {print $2}') swapused=$(free ${option} | awk '/Swap:/ {print $3}') swapfree=$(free ${option} | awk '/Swap:/ {print $4}') # Uptime uptime=$(