onos/tools/dev/p4vm/tutorial-bootstrap.sh
Carmelo Cascone ada7b5b820 New P4 dev and tutorial VM with Ubuntu 18.04
Change-Id: Iacf2ca8f8467dc91e696ace5ed30412f7869110a
(cherry picked from commit 2b8bcbcd3d0e3e66ee2bc681f0f1dfbb0e2a218f)
2019-05-17 20:45:36 +00:00

30 lines
1.1 KiB
Bash
Executable File

#!/usr/bin/env bash
set -xe
# Desktop and other tutorial tools.
# VirtualBox doesn't like Gnome, use Unity:
# https://askubuntu.com/questions/1035410/ubuntu-18-04-gnome-hangs-on-virtualbox-with-3d-acceleration-enabled
echo "gdm3 shared/default-x-display-manager select lightdm" | debconf-set-selections
echo "lightdm shared/default-x-display-manager select lightdm" | debconf-set-selections
# Install ubuntu desktop from tasksel
apt-get -y --no-install-recommends tasksel
tasksel ubuntu-desktop
# Remove gnome, install unity
apt-get remove gdm3 ubuntu-desktop
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
ubuntu-unity-desktop lightdm \
gnome-panel \
gnome-settings-daemon \
metacity \
nautilus
# FIXME: app menu is empty in unity
snap install intellij-idea-community --classic
# TODO: install plugins, P4 plugin and Python CE
DEBIAN_FRONTEND=noninteractive apt-get -y install wireshark
echo "wireshark-common wireshark-common/install-setuid boolean true" | debconf-set-selections
DEBIAN_FRONTEND=noninteractive dpkg-reconfigure wireshark-common