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.

60 lines
1.2 KiB

5 years ago
# INSTALL
## Clone repo
5 years ago
See http://docs.swarmlab.io/Howtos/git/use-git.adoc.html
5 years ago
## create a directory structure as shown below
5 years ago
> Copy files from install Directory
5 years ago
```
5 years ago
/ <----- *Note*
5 years ago
├── etc
│   ├── bash_completion.d
│   └── profile.d
│   └── swarmlab-adoc.sh
└── usr
└── share
└── swarmlab.io
└── adoc
└── swarmlab-adoc
```
5 years ago
**sudo chmod +x -R /usr/share/swarmlab.io**
5 years ago
5 years ago
## Add the following lines to the end of /home/user_account/_.bashrc file
5 years ago
```
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
5 years ago
See http://docs.swarmlab.io/Howtos/docker/install.adoc.html
5 years ago
Ready :-)