X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=tools%2Fubuntu-server-cloudimg-modify.sh;h=2e8399a9b5d7d257e0bda03c4323738a7f2a8877;hb=22174dcc54a358d886a718e8c36d0d50e742a468;hp=ac43d28f82961c662d211a03fa16983ddad79e7d;hpb=2aa1cd3922f26b9d8c9bdad310463caa5eeb8136;p=yardstick.git diff --git a/tools/ubuntu-server-cloudimg-modify.sh b/tools/ubuntu-server-cloudimg-modify.sh index ac43d28f8..2e8399a9b 100755 --- a/tools/ubuntu-server-cloudimg-modify.sh +++ b/tools/ubuntu-server-cloudimg-modify.sh @@ -1,3 +1,4 @@ +#!/bin/bash ############################################################################## # Copyright (c) 2015 Ericsson AB and others. # @@ -7,8 +8,6 @@ # http://www.apache.org/licenses/LICENSE-2.0 ############################################################################## -#!/bin/bash - # installs required packages # must be run from inside the image (either chrooted or running) @@ -20,6 +19,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 @@ -27,20 +28,46 @@ grep trusty /etc/apt/sources.list && \ echo "deb http://archive.ubuntu.com/ubuntu/ trusty-backports main restricted universe multiverse" >> /etc/apt/sources.list # Workaround for building on CentOS (apt-get is not working with http sources) -sed -i 's/http/ftp/' /etc/apt/sources.list +# sed -i 's/http/ftp/' /etc/apt/sources.list # Force apt to use ipv4 due to build problems on LF POD. echo 'Acquire::ForceIPv4 "true";' > /etc/apt/apt.conf.d/99force-ipv4 +# Add hostname to /etc/hosts. +# Allow console access via pwd +cat </etc/cloud/cloud.cfg.d/10_etc_hosts.cfg +manage_etc_hosts: True +password: RANDOM +chpasswd: { expire: False } +ssh_pwauth: True +EOF + apt-get update apt-get install -y \ fio \ + git \ + gcc \ iperf3 \ linux-tools-common \ linux-tools-generic \ lmbench \ - stress + make \ + netperf \ + patch \ + perl \ + rt-tests \ + stress \ + sysstat + +git clone https://github.com/kdlucas/byte-unixbench.git /opt/tempT +make --directory /opt/tempT/UnixBench/ + +git clone https://github.com/beefyamoeba5/ramspeed.git /opt/tempT/RAMspeed +cd /opt/tempT/RAMspeed/ramspeed-2.6.0 +mkdir temp +bash build.sh + +git clone https://github.com/beefyamoeba5/cachestat.git /opt/tempT/Cachestat # restore symlink ln -sf /run/resolvconf/resolv.conf /etc/resolv.conf -