across/unixbench.sh

50 lines
1.5 KiB
Bash
Raw Normal View History

2015-09-14 16:52:37 +08:00
#! /bin/bash
#==============================================================#
# Description: Unixbench script #
# Author: Teddysun <i@teddysun.com> #
# Intro: https://teddysun.com/245.html #
#==============================================================#
# Check System
[[ $EUID -ne 0 ]] && echo 'Error: This script must be run as root!' && exit 1
2015-09-14 17:16:24 +08:00
[[ -f /etc/redhat-release ]] && os='centos'
[[ ! -z "`egrep -i debian /etc/issue`" ]] && os='debian'
[[ ! -z "`egrep -i ubuntu /etc/issue`" ]] && os='ubuntu'
[[ "$os" == '' ]] && echo 'Error: Your system is not supported to run it!' && exit 1
2015-09-14 16:52:37 +08:00
# Install necessary libaries
if [ "$os" == 'centos' ]; then
2015-09-14 17:16:24 +08:00
yum -y install make automake gcc autoconf gcc-c++ time perl-Time-HiRes
2015-09-14 16:52:37 +08:00
else
apt-get -y update
apt-get -y install make automake gcc autoconf time perl
fi
# Create new soft download dir
mkdir -p /opt/unixbench
cd /opt/unixbench
cur_dir=`pwd`
# Download UnixBench5.1.3
if [ -s UnixBench5.1.3.tgz ]; then
echo "UnixBench5.1.3.tgz [found]"
else
echo "UnixBench5.1.3.tgz not found!!!download now..."
if ! wget -c http://lamp.teddysun.com/files/UnixBench5.1.3.tgz; then
echo "Failed to download UnixBench5.1.3.tgz, please download it to ${cur_dir} directory manually and try again."
exit 1
fi
fi
tar -xzf UnixBench5.1.3.tgz
cd UnixBench/
#Run unixbench
make
./Run
echo ''
echo ''
echo "======= Script description and score comparison completed! ======= "
echo ''
echo ''