Skip to content

Instantly share code, notes, and snippets.

@matix2120
Last active December 2, 2022 09:26
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save matix2120/a58976b7cca97f7ba3f22998e925a7f5 to your computer and use it in GitHub Desktop.
Save matix2120/a58976b7cca97f7ba3f22998e925a7f5 to your computer and use it in GitHub Desktop.
sudo apt-get install cmake libusb-1.0-0-dev
sudo echo -e "\nblacklist dvb_usb_rtl28xxu\nblacklist rtl2832\nblacklist rtl2830" >> /etc/modprobe.d/blacklist.conf
rmmod dvb_usb_rtl28xxu
git clone git://git.osmocom.org/rtl-sdr.git
cp rtl-sdr/rtl-sdr.rules /etc/udev/rules.d/
cd rtl-sdr
mkdir bin
cd bin
cmake ../
make
sudo make install
sudo ldconfig
@raymondmoberlyieee
Copy link

Correction?
cmake ./

@raymondmoberlyieee
Copy link

or was there supposed to be a
cd bin

@raymondmoberlyieee
Copy link

I saw other lists with a whole bunch more things to put into the blacklists:
e.g. blacklist dvb_usb_rtl28xxu blacklist rtl2832 blacklist rtl2830
which is at https://www.reddit.com/r/RTLSDR/wiki/blacklist_dvb_usb_rtl28xxu

@matix2120
Copy link
Author

Sure, cd bin was missing.
Blacklisting dvb_usb_rtl28xxu worked for me. Feel free to use other lists if this solution doesn't work for you.

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