A guide to simplify the installation of drivers and software for an RTL-SDR in Linux.
https://drive.google.com/file/d/1zvpg5ay11emkd9-_jLtZOkHlLUrDHfUn/view?usp=sharing
A guide to simplify the installation of drivers and software for an RTL-SDR in Linux.
https://drive.google.com/file/d/1zvpg5ay11emkd9-_jLtZOkHlLUrDHfUn/view?usp=sharing
RTL_433 is a command line Linux tool to decode ISM band gizmos like remote temperature and humidity sensors with an SDR. These signals are transmitted around 433 MHz and are not encrypted but they are digital. RTL_433 handles both the reception and decoding of these signals. No other apps are required for use other than a web browser for a GUI display. RTL_433 was developed by Benjamin Larsson and the source code is available at https://github.com/merbanan/rtl_433
The focus of this guide is establishing basic functionality under Linux Mint 19.3 with an RTL-SDR Version 3 dongle. Operation under other distributions and SDR's will be similar yet beyond the scope of this guide to cover them all. I'll assume you've already installed the drivers and have a working SDR dongle. If not, see my guide RTL-SDR Quick Start Guide for Linux.
Install needed libraries. The system will indicate if they're already installed and nothing will be over-written.
sudo apt-get install libtool libusb-1.0-0-dev librtlsdr-dev rtl-sdr build-essential cmake pkg-config
Get the source code.
git clone https://github.com/merbanan/rtl_433.git
Build & install rtl_433.
cd rtl_433/
mkdir build
cd build
cmake ..
make
make install
Open a terminal and do one of the following:
rtl_433 (default mode with auto gain)
rtl_433 -C customary (displays temp in F)
-Ken