Last active
August 29, 2015 14:08
-
-
Save rubenerd/c27da04bdb67fc750729 to your computer and use it in GitHub Desktop.
Building Debian system for ServerBear tests
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
## Script for running private ServerBear tests on Debian | |
PLAN="Some Hosting Plan" | |
EMAIL="[email protected]" | |
sudo -s | |
apt-get update | |
apt-get dist-upgrade | |
apt-get -y install curl | |
apt-get -y install dpkg-dev | |
apt-get -y install fio | |
apt-get -y install g++ | |
apt-get -y install libaio-dev | |
apt-get -y install traceroute | |
wget -N https://raw.github.com/Crowd9/Benchmark/master/sb.sh && | |
bash sb.sh 'Testificate' '$PLAN' '$EMAIL' private | |
exit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment