You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
1.5 KiB
72 lines
1.5 KiB
4 years ago
|
# INSTALL
|
||
|
|
||
|
## Clone repo
|
||
|
|
||
|
|
||
|
git clone https://git.swarmlab.io:3000/swarmlab/swarmlab-sec.git
|
||
|
|
||
|
|
||
|
|
||
|
## create a directory structure as shown below
|
||
|
|
||
|
> Copy files from install Directory
|
||
|
|
||
|
```
|
||
|
/ <----- *Note*
|
||
|
├── etc
|
||
|
│ ├── bash_completion.d
|
||
|
│ │ └── swarmlab-mpi-autocompletion.sh
|
||
|
│ └── profile.d
|
||
|
│ └── swarmlab-mpi.sh
|
||
|
└── usr
|
||
|
└── share
|
||
|
└── swarmlab.io
|
||
|
└── mpi
|
||
|
├── commands
|
||
|
├── LICENSE
|
||
|
├── project
|
||
|
│ └── mpi_hello_world.c
|
||
|
├── ssh
|
||
|
│ ├── id_rsa
|
||
|
│ └── id_rsa.pub
|
||
|
└── swarmlab-mpi
|
||
|
```
|
||
|
|
||
|
**sudo chmod +x -R /usr/share/swarmlab.io**
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
## Add the following lines to the end of /home/user_account/_.bashrc file
|
||
|
|
||
|
```
|
||
|
if [ -d /etc/profile.d ]; then
|
||
|
for i in /etc/profile.d/*.sh; do
|
||
|
if [ -r $i ]; then
|
||
|
. $i
|
||
|
fi
|
||
|
done
|
||
|
unset i
|
||
|
fi
|
||
|
|
||
|
|
||
|
# enable programmable completion features (you don't need to enable
|
||
|
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
|
||
|
# sources /etc/bash.bashrc).
|
||
|
if ! shopt -oq posix; then
|
||
|
if [ -f /usr/share/bash-completion/bash_completion ]; then
|
||
|
. /usr/share/bash-completion/bash_completion
|
||
|
elif [ -f /etc/bash_completion ]; then
|
||
|
. /etc/bash_completion
|
||
|
fi
|
||
|
fi
|
||
|
```
|
||
|
|
||
|
# Install Docker and Compose
|
||
|
|
||
|
See http://docs.swarmlab.io/SwarmLab-HowTos/labs/Howtos/docker/install.adoc.html
|
||
|
|
||
|
|
||
|
Ready :-)
|
||
|
|