Skip to content

Instantly share code, notes, and snippets.

@shortword
Created October 2, 2018 01:22
Show Gist options
  • Save shortword/2ef10d55d40935def802f39be9a73147 to your computer and use it in GitHub Desktop.
Save shortword/2ef10d55d40935def802f39be9a73147 to your computer and use it in GitHub Desktop.
Download and build osmocom
mkdir -p $HOME/local/src
cd $HOME/local/src
git clone git://git.osmocom.org/rtl-sdr.git
cd rtl-sdr/
mkdir build
cd build
# PLEASE NOTE that with the flag below, devices will be available to non-root users!
cmake ../ -DINSTALL_UDEV_RULES=ON
# The next command includes '-j`nproc`' which will help utilize all of the cores on your device (AKA faster build)
make -j`nproc`
sudo make install
sudo ldconfig
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment