GNURadio: Instalasi RTL-SDR
Revision as of 05:56, 27 December 2019 by Onnowpurbo (talk | contribs) (Created page with "==Blocklist rtl28xxxu== cd /etc/modprobe.d/ sudo vi ban-rtl.conf Tambahakan blacklist dvb_usb_rtl28xxu ==Install rtl-sdr untuk gnuradio-companion== apt update apt -y...")
Blocklist rtl28xxxu
cd /etc/modprobe.d/ sudo vi ban-rtl.conf
Tambahakan
blacklist dvb_usb_rtl28xxu
Install rtl-sdr untuk gnuradio-companion
apt update apt -y install git libusb-1.0 cd /usr/local/src/ git clone git://git.osmocom.org/rtl-sdr.git
Compile
cd /usr/local/src/ cd rtl-sdr/ mkdir build cd build cmake ../ -DINSTALL_UDEV_RULES=ON make sudo make install sudo ldconfig
sudo make install-udev-rules
Compile GNURadio + gr-osmosdr
git clone git://git.osmocom.org/gr-osmosdr cd gr-osmosdr/
git checkout gr3.7
mkdir build cd build/ cmake ../
Pastikan ada
-- ###################################################### -- # gr-osmosdr enabled components -- ###################################################### -- * Python support -- * Osmocom IQ Imbalance Correction -- * sysmocom OsmoSDR -- * FunCube Dongle -- * IQ File Source -- * Osmocom RTLSDR -- * RTLSDR TCP Client -- * Ettus USRP Devices -- * Osmocom MiriSDR -- * HackRF Jawbreaker -- -- ###################################################### -- # gr-osmosdr disabled components -- ###################################################### -- -- Building for version: 4c101ea4 / 0.0.1git -- Using install prefix: /usr/local
Compile
make sudo make install sudo ldconfig