install-base.sh 358 Bytes
Newer Older
1
2
3
4
#!/bin/bash -eux

set -eux

5
6
7
8
9
10
11
12
13
pushd /tmp/input
mv guestinit.sh /home/ubuntu/guestinit.sh
mv bzImage /boot/vmlinuz-5.4.46
mv config-5.4.46 /boot/
mv m5 /sbin/m5
update-grub
tar xf kheaders.tar.bz2 -C /
popd
rm -rf /tmp/input
14
15
16
17

apt-get update
apt-get -y install \
    iperf \
Antoine Kaufmann's avatar
Antoine Kaufmann committed
18
    iputils-ping \
19
20
21
    netperf \
    netcat \
    ethtool \
22
23
    tcpdump \
    pciutils