DoDWAN   Documentation Download About

Installing DoDWAN

DoDWAN can be installed either from an archive that contains only executable code, or from an archive that contains source code.

In the following we assume you wish to install DoDWAN on a Linux platform, as this is the most commonly used platform for experimentation in opportunistic networking.

Requirements

Installing from the executable archive

Download the latest DoDWAN archive:

wget http://casa-irisa.univ-ubs.fr/download/dodwan.zip

Unzip this archive:

unzip dodwan.zip

Set environment variables (only required if this is the first installation of DoDWAN on this host):

cat << EOF >> ~/.$(basename $SHELL)rc
#
# DODWAN environment variables
export DODWAN_HOME="${PWD}/dodwan"
export PATH="\${DODWAN_HOME}/bin:\${PATH}"
#
EOF
source ~/.$(basename $SHELL)rc

Installing from the source code

Download the latest DoDWAN source archive:

wget http://casa-irisa.univ-ubs.fr/download/dodwan-src.zip

Unzip this archive:

unzip dodwan_src.zip

Compile DoDWAN:

cd dodwan ; make ; cd ..

Set environment variables (only required if this is the first installation of DoDWAN on this host):

cat << EOF >> ~/.$(basename $SHELL)rc
#
# DODWAN environment variables
export DODWAN_HOME="${PWD}/dodwan"
export PATH="\${DODWAN_HOME}/bin:\${PATH}"
#
EOF
source ~/.$(basename $SHELL)rc