Bypass MD-380 Programming Password Last week, I got an email from a fellow ham who…
Someone asked me to help him setting up GNURadio on Raspberry Pi for a cool project (might be published here in the future).
I thought that would be easy but it didn’t.
I spent hours trying to build stuff like PyBOMBS just because GNURadio doesn’t have sources for RTL-SDR dongle.
I found a way to do it pretty easy.
Not sure if you can use Raspbian but I tried it with Ubuntu.
sudo apt-get update
sudo nano /boot/firmware/config.txt
dtparam=audio=on
sudo apt-get install gnuradio gnuradio-doc gnuradio-dev
sudo apt-get install gqrx-sdr
gnuradio-companion &
That’s it.
I used X11 Forwarding (basically GUI over SSH) with MobaXTerm because it has a native support for it.
You can test your audio on the RPi by installing aplay:
sudo apt-get install alsa-utils
Then using
aplay /usr/share/sounds/alsa/Front_Center.wav
command to play a test file.
Good luck and 73!