How to install DD server?

Open discussion about photography, qDslrDashboard
Post Reply
Hanva
Posts: 4
Joined: 08 Jan 2018, 12:08

How to install DD server?

Post 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?
hubaiz
Site Admin
Posts: 2003
Joined: 27 Jan 2015, 18:58

Re: How to install DD server?

Post 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
Hanva
Posts: 4
Joined: 08 Jan 2018, 12:08

Re: How to install DD server?

Post 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.
hubaiz
Site Admin
Posts: 2003
Joined: 27 Jan 2015, 18:58

Re: How to install DD server?

Post by hubaiz »

Check my previous mail.
Hanva
Posts: 4
Joined: 08 Jan 2018, 12:08

Re: How to install DD server?

Post by Hanva »

Thanks
Post Reply