forked from MaxiNet/MaxiNet
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinstaller.sh
More file actions
executable file
·128 lines (101 loc) · 2.77 KB
/
installer.sh
File metadata and controls
executable file
·128 lines (101 loc) · 2.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
#!/bin/bash
echo "MaxiNet 1.0 installer"
echo ""
echo "This program installs MaxiNet 1.0 and all requirements to the home directory of your user"
if [ "$1" == "--help" ] || [ "$1" == "-h" ]
then
echo ""
echo "Invoke without any parameter to interactively install MaxiNet and its dependencies."
echo "Use the -a parameter for complete and unguided installation."
exit 0
fi
if [ "$1" == "-a" ]
then
mininet="y"
metis="y"
pyro="y"
else
read -n1 -r -p "Do you want to install Mininet 2.2.1rc1? ([y]/n)" mininet
if [ "$mininet" == "" ] || [ "$mininet" == "y" ] || [ "$mininet" == "Y" ]
then
mininet="y"
echo ""
echo "You choose to install Mininet. Warning: This will automatically remove existing directories ~/mininet, ~/loxigen, and ~/openflow"
else
mininet="n"
fi
echo ""
read -n1 -r -p "Do you want to install Metis 5.1? ([y]/n)" metis
if [ "$metis" == "" ] || [ "$metis" == "y" ] || [ "$metis" == "Y" ]
then
metis="y"
else
metis="n"
fi
echo ""
read -n1 -r -p "Do you want to install Pyro 4? ([y]/n)" pyro
if [ "$pyro" == "" ] || [ "$pyro" == "y" ] || [ "$pyro" == "Y" ]
then
pyro="y"
else
pyro="n"
fi
echo ""
echo "----------------"
echo ""
echo "MaxiNet installer will now install: "
if [ "$mininet" == "y" ]; then echo " -Mininet 2.2.1rc1"; fi
if [ "$metis" == "y" ]; then echo " -Metis 5.1"; fi
if [ "$pyro" == "y" ]; then echo " -Pyro 4"; fi
echo " -MaxiNet 1.0"
echo ""
read -n1 -r -p "Is this OK? Press ANY key to continue or CTRL+C to abort." abort
fi
echo "installing required dependencies."
sudo apt-get install git autoconf screen cmake build-essential sysstat python-matplotlib uuid-runtime
if [ "$mininet" == "y" ]
then
cd ~
sudo rm -rf openflow &> /dev/null
sudo rm -rf loxigen &> /dev/null
sudo rm -rf pox &> /dev/null
sudo rm -rf oftest &> /dev/null
sudo rm -rf oflops &> /dev/null
sudo rm -rf ryu &> /dev/null
sudo rm -rf mininet &> /dev/null
git clone git://github.com/mininet/mininet
cd mininet
git checkout -b 2.2.1rc1 2.2.1rc1
cd util/
./install.sh
# the mininet installer sometimes crashes with a zipimport.ZipImportError.
# In that case, we retry installation.
if [ "$?" != "0" ]
then
./install.sh
fi
fi
if [ "$metis" == "y" ]
then
cd ~
wget http://glaros.dtc.umn.edu/gkhome/fetch/sw/metis/metis-5.1.0.tar.gz
tar -xzf metis-5.1.0.tar.gz
rm metis-5.1.0.tar.gz
cd metis-5.1.0
make config
make
sudo make install
cd ~
rm -rf metis-5.1.0
fi
if [ "$pyro" == "y" ]
then
sudo apt-get install python-pip
sudo pip install Pyro4
fi
cd ~
sudo rm -rf MaxiNet &> /dev/null
git clone git://github.com/MaxiNet/MaxiNet.git
cd MaxiNet
git checkout v1.0
sudo make install