Compile new driver PLEASE NOTE: Before continue, plese compile indi-core, following manual under Compile-indi-core.txt file guide If you just compile indi core, can you continue with this guide: 1º) update dependencies sudo apt-get -y install libnova-dev libcfitsio-dev libusb-1.0-0-dev zlib1g-dev libgsl-dev build-essential cmake git libjpeg-dev libcurl4-gnutls-dev libtiff-dev libfftw3-dev libftdi-dev libgps-dev libraw-dev libdc1394-dev libgphoto2-dev libboost-dev libboost-regex-dev librtlsdr-dev liblimesuite-dev libftdi1-dev libavcodec-dev libavdevice-dev sudo apt-get -y install libindi-dev sudo apt-get install libopencv-dev 2º) go to projects directory: cd ~/Projects 3º) Download indi-3rdparty from git repository git clone https://github.com/indilib/indi-3rdparty 4º) Compile a new driver, in our case ini-rolloffino: mkdir -p ~/Projects/build/indi-rolloffino cd ~/Projects/build/indi-rolloffino cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Debug ~/Projects/indi-3rdparty/indi-rolloffino/ make -j4 sudo make install PLASE NOTE: before compile make sure we have update files rolloffino.cpp and rolloffino.h from path ~/Projects/indi-3rdparty/indi-rolloffino We can recompile another drivers, here some examples too: For QHY driver: mkdir -p ~/Projects/build/indi-qhy cd ~/Projects/build/indi-qhy cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Debug ~/Projects/indi-3rdparty/indi-qhy make -j4 sudo make install For eqmod Driver: mkdir -p ~/Projects/build/indi-eqmod cd ~/Projects/build/indi-eqmod cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Debug ~/Projects/indi-3rdparty/indi-eqmod make -j4 sudo make install Font: https://github.com/indilib/indi-3rdparty