add scenario and sample file for Unixbench.
[yardstick.git] / tools / ubuntu-server-cloudimg-modify.sh
index 9e1b40c..11e6051 100755 (executable)
@@ -20,6 +20,8 @@ if [ $# -eq 1 ]; then
     # /etc/resolv.conf is a symbolic link to /run, restore at end
     rm /etc/resolv.conf
     echo "nameserver $nameserver_ip" > /etc/resolv.conf
+    echo "nameserver 8.8.8.8" >> /etc/resolv.conf
+    echo "nameserver 8.8.4.4" >> /etc/resolv.conf
 fi
 
 # iperf3 only available for trusty in backports
@@ -40,14 +42,21 @@ EOF
 apt-get update
 apt-get install -y \
     fio \
+    git \
+    gcc \
     iperf3 \
     linux-tools-common \
     linux-tools-generic \
     lmbench \
+    make \
     netperf \
+    patch \
+    perl \
     rt-tests \
     stress \
     sysstat
 
+git clone https://github.com/kdlucas/byte-unixbench.git /opt/tempT
+make --directory /opt/tempT/UnixBench/
 # restore symlink
 ln -sf /run/resolvconf/resolv.conf /etc/resolv.conf