mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-11-02 01:01:03 +01:00
With Lubuntu desktop and P4-enabled code editors Change-Id: I0c287c1d039da5f227d43994340b20a01ffc2617
25 lines
485 B
Bash
Executable File
25 lines
485 B
Bash
Executable File
#!/bin/bash
|
|
set -xe
|
|
|
|
cp /etc/skel/.bashrc ~/
|
|
cp /etc/skel/.profile ~/
|
|
cp /etc/skel/.bash_logout ~/
|
|
|
|
# ONOS
|
|
git clone https://github.com/opennetworkinglab/onos.git
|
|
tee -a ~/.bashrc <<EOF
|
|
|
|
# ONOS
|
|
export ONOS_ROOT=~/onos
|
|
source ~/onos/tools/dev/bash_profile
|
|
source ~/onos/tools/dev/p4vm/bm-commands.sh
|
|
EOF
|
|
source ~/.profile
|
|
|
|
# Build and install P4 tools
|
|
bash /vagrant/install-p4-tools.sh
|
|
|
|
# Mininet
|
|
git clone git://github.com/mininet/mininet ~/mininet
|
|
sudo ~/mininet/util/install.sh -nwv
|