Skip to content

Instantly share code, notes, and snippets.

@jannegpriv
Created March 30, 2020 17:23
Show Gist options
  • Save jannegpriv/ed4d2dac666c1871dfb27ea81cec06c5 to your computer and use it in GitHub Desktop.
Save jannegpriv/ed4d2dac666c1871dfb27ea81cec06c5 to your computer and use it in GitHub Desktop.
Build and install drivers for Tellstick Duo on Raspberry PI

Build and install drivers for Tellstick Duo on Raspberry PI

sudo sh -c 'echo "deb-src http://download.telldus.com/debian/ stable main" > /etc/apt/sources.list.d/telldus.list'
wget http://download.telldus.com/debian/telldus-public.key
sudo apt-key add telldus-public.key
sudo apt-get update
sudo apt-get install build-essential
sudo apt-get build-dep telldus-core
sudo apt-get install cmake libconfuse-dev libftdi-dev help2man
mkdir -p ~/tellstick-build
cd ~/tellstick-build
sudo apt-get --compile source telldus-core
sudo dpkg --install *.deb
@anttihr
Copy link

anttihr commented Oct 2, 2022

Can get telldus-core properly installed to my RPi3 ... here the compiling also fails. Would need it for accessing Tellive cloud, using tellive.py.

/usr/bin/c++ -Wdate-time -D_FORTIFY_SOURCE=2 -O3 -DNDEBUG -Wl,-z,relro -rdynamic CMakeFiles/tdtool.dir/main.cpp.o -o tdtool -L/home/antti/tellstick-build/telldus-core-2.1.2/build/client -Wl,-rpath,/home/antti/tellstick-build/telldus-core-2.1.2/build/client: -ltelldus-core
/usr/bin/ld: /home/antti/tellstick-build/telldus-core-2.1.2/build/client/libtelldus-core.so: undefined reference to pthread_create' /usr/bin/ld: /home/antti/tellstick-build/telldus-core-2.1.2/build/client/libtelldus-core.so: undefined reference to pthread_join'
collect2: error: ld returned 1 exit status

@anttihr
Copy link

anttihr commented Oct 2, 2022

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment