Merge "Add grafana config for TC069_memory_bandwidth(RAMspeed)"
[yardstick.git] / tools / ubuntu-server-cloudimg-dpdk-modify.sh
1 #!/bin/bash
2 ##############################################################################
3 # Copyright (c) 2015 Ericsson AB and others.
4 #
5 # All rights reserved. This program and the accompanying materials
6 # are made available under the terms of the Apache License, Version 2.0
7 # which accompanies this distribution, and is available at
8 # http://www.apache.org/licenses/LICENSE-2.0
9 ##############################################################################
10
11 # installs required packages
12 # must be run from inside the image (either chrooted or running)
13
14 set -ex
15
16 if [ $# -eq 1 ]; then
17     nameserver_ip=$1
18
19     # /etc/resolv.conf is a symbolic link to /run, restore at end
20     rm /etc/resolv.conf
21     echo "nameserver $nameserver_ip" > /etc/resolv.conf
22     echo "nameserver 8.8.8.8" >> /etc/resolv.conf
23     echo "nameserver 8.8.4.4" >> /etc/resolv.conf
24 fi
25
26 # iperf3 only available for wily in backports
27 grep wily /etc/apt/sources.list && \
28     echo "deb http://archive.ubuntu.com/ubuntu/ wily-backports main restricted universe multiverse" >> /etc/apt/sources.list
29
30 # Workaround for building on CentOS (apt-get is not working with http sources)
31 # sed -i 's/http/ftp/' /etc/apt/sources.list
32
33 # Force apt to use ipv4 due to build problems on LF POD.
34 echo 'Acquire::ForceIPv4 "true";' > /etc/apt/apt.conf.d/99force-ipv4
35
36 echo 'GRUB_CMDLINE_LINUX="resume=/dev/sda1 default_hugepagesz=1G hugepagesz=1G hugepages=2 iommu=on iommu=pt intel_iommu=on"' >> /etc/default/grub
37 echo 'vm.nr_hugepages=1024' >> /etc/sysctl.conf
38 echo 'huge /mnt/huge hugetlbfs defaults 0 0' >> vi /etc/fstab
39
40 mkdir /mnt/huge
41 chmod 777 /mnt/huge
42
43 for i in {1..2}
44 do
45     touch /etc/network/interfaces.d/eth$i.cfg
46     chmod 777 /etc/network/interfaces.d/eth$i.cfg
47     echo "auto eth$i" >> /etc/network/interfaces.d/eth$i.cfg
48     echo "iface eth$i inet dhcp" >> /etc/network/interfaces.d/eth$i.cfg
49 done
50
51 # this needs for checking dpdk status, adding interfaces to dpdk, bind, unbind etc..
52
53 # Add hostname to /etc/hosts.
54 # Allow console access via pwd
55 cat <<EOF >/etc/cloud/cloud.cfg.d/10_etc_hosts.cfg
56 manage_etc_hosts: True
57 password: RANDOM
58 chpasswd: { expire: False }
59 ssh_pwauth: True
60 EOF
61
62 linuxheadersversion=`echo ls boot/vmlinuz* | cut -d- -f2-`
63
64 apt-get update
65 apt-get install -y \
66     fio \
67     gcc \
68     git \
69     iperf3 \
70     linux-tools-common \
71     linux-tools-generic \
72     lmbench \
73     make \
74     netperf \
75     patch \
76     perl \
77     rt-tests \
78     stress \
79     sysstat \
80     linux-headers-$linuxheadersversion \
81     libpcap-dev \
82     lua5.2
83
84 git clone http://dpdk.org/git/dpdk
85 git clone http://dpdk.org/git/apps/pktgen-dpdk
86
87 git clone https://github.com/kdlucas/byte-unixbench.git /opt/tempT
88 make --directory /opt/tempT/UnixBench/
89
90 git clone https://github.com/beefyamoeba5/ramspeed.git /opt/tempT/RAMspeed
91 cd /opt/tempT/RAMspeed/ramspeed-2.6.0
92 mkdir temp
93 bash build.sh
94
95 git clone https://github.com/beefyamoeba5/cachestat.git /opt/tempT/Cachestat
96
97 # restore symlink
98 ln -sf /run/resolvconf/resolv.conf /etc/resolv.conf