Page 1 of 1

How to install DD server?

Posted: 08 Jan 2018, 12:22
by Hanva
I have Raspberry Pi 3b and Ubuntu Mate. I tried to install DD server as follows:

Code: Select all

sudo apt-get install build-essential pkg-config libusb-1.0-0-dev
g++ -Wall src/main.cpp src/communicator.cpp `pkg-config --libs --cflags libusb-1.0` -lpthread -lrt -lstdc++ -o ddserver
....but the following text appeared::

Code: Select all

Reading package lists... Done
Building dependency tree       
Reading state information... Done
build-essential is already the newest version (12.1ubuntu2).
libusb-1.0-0-dev is already the newest version (2:1.0.20-1).
libusb-1.0-0-dev set to manually installed.
pkg-config is already the newest version (0.29.1-0ubuntu1).
0 upgraded, 0 newly installed, 0 to remove and 53 not upgraded.
Could anyone help such a beginner with this? What I have to do?

Re: How to install DD server?

Posted: 08 Jan 2018, 18:37
by hubaiz
did you clone the git repo?

Code: Select all

sudo apt-get install build-essential pkg-config libusb-1.0-0-dev
git clone https://github.com/hubaiz/DslrDashboardServer.git
cd DslrDashboardServer
g++ -Wall src/main.cpp src/communicator.cpp `pkg-config --libs --cflags libusb-1.0` -lpthread -lrt -lstdc++ -o ddserver

Re: How to install DD server?

Posted: 09 Jan 2018, 07:02
by Hanva
No I didnt. Could you give me detailed instructions on how to install the dd server. I am newbie and my Linux knowledge is weak so forgive me.

Re: How to install DD server?

Posted: 09 Jan 2018, 08:37
by hubaiz
Check my previous mail.

Re: How to install DD server?

Posted: 10 Jan 2018, 18:46
by Hanva
Thanks