# INSTALL ## create a directory structure as shown below ``` / ├── etc │   ├── bash_completion.d │   └── profile.d │   └── swarmlab-adoc.sh └── usr └── share └── swarmlab.io └── adoc └── swarmlab-adoc ``` chmod +x all files in /usr/share/swarmlab.io ## Add the following lines to the end of .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.vlabs.uniwa.gr/Howtos/docker/install.adoc.html Ready :-)