Skip to content
Eduardo Raúl del Puerto Benítez edited this page Feb 11, 2019 · 1 revision

Welcome to the Andama-Remote-Desktop wiki!

Andama is an open source remote desktop software, with client side encryption and privacy in mind

How to compile on Ubuntu 16.04 (Stable):

1) Install the required dependeces

sudo apt-get update 
sudo apt-get install -y qt5-default libxtst-dev build-essential git

2) Download the source

 git clone https://github.com/YiannisBourkelis/Andama-Remote-Desktop.git

3) Compile AndamaProxy (Server)

cd Andama-Remote-Desktop-master/src/AndamaProxy
qmake AndamaProxy.pro
make clean
make

4) Compile Andama (Client)

cd Andama-Remote-Desktop-master/src/Andama
qmake Andama.pro
make clean
make

How to compile on Ubuntu 16.04 (Develop):

1) Install the required dependeces

sudo apt-get update 
sudo apt-get install -y qt5-default libxtst-dev build-essential git

2) Download the source

 git clone https://github.com/YiannisBourkelis/Andama-Remote-Desktop.git

3) Compile AndamaProxy (Server)

cd Andama-Remote-Desktop-develop/src/AndamaProxy
qmake AndamaProxy.pro
make clean
make

4) Compile Andama (Client)

cd Andama-Remote-Desktop-develop/src/Andama
qmake Andama.pro
make clean
make