Skip to content

Instantly share code, notes, and snippets.

@rubenerd
Last active August 29, 2015 14:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rubenerd/c27da04bdb67fc750729 to your computer and use it in GitHub Desktop.
Save rubenerd/c27da04bdb67fc750729 to your computer and use it in GitHub Desktop.
Building Debian system for ServerBear tests
#!/bin/sh
## Script for running private ServerBear tests on Debian
PLAN="Some Hosting Plan"
EMAIL="someone@example.com"
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