For those Servers which are not running Redhat Linux just change the following line in serverinfo.php to read the version of Linux
Code:
$linux = "cat /etc/redhat-release";
to your Linux Distribution:
$linux = "cat /etc/debian_version";
$linux = "cat /etc/SuSE-release";
$linux = "cat /etc/mandrake-release";
$linux = "cat /etc/fedora-release";
$linux = "cat /etc/gentoo-release";
$linux = "cat /etc/slackware-version";
$linux = "cat /etc/eos-version";