5

Will it take the same procedure (like we install GNUradio in Ubuntu) or should we need something different. Please tell me in detail as i am a newbie on this side(Linux and raspberry pi). I am using Raspbian wheezy on raspberry pi.

Piotr Kula
  • 17,336
  • 6
  • 66
  • 105
riki
  • 51
  • 1
  • 1
  • 3

2 Answers2

5

I forgot to check, but it seems there is actually a package for gnuradio in Raspbian wheezy: http://archive.raspbian.org/raspbian/pool/main/g/gnuradio/

So you should be able to install the package by running:

sudo apt-get install gnuradio

If you want do develop using gnuradio, make sure to also install gnuradio-dev and maybe also the different libgnuradio* packages (you can search for them using apt-cache seardch libgnuradio).

Arne
  • 2,234
  • 2
  • 18
  • 35
0
sudo su -
echo "deb http://archive.raspbian.org/raspbian jessie main">>/etc/apt/sources.list

check if listed in source file

cat /etc/apt/sources.list

Get updates

apt-get update

install packages

apt-get install -y gnuradio
apt-get install -y gnuradio-dev

disable the the driver from using the USB DVB as a TV tuner card.

echo "blacklist dvb_usb_rtl28xxu">>/etc/modprobe.d/raspi-blacklist.conf

apt-get install -y rtl-sdr gr-osmosdr
echo 'SUBSYSTEM=="usb", ATTRS{idVendor}=="0bda", ATTRS{idProduct}=="2832", GROUP="adm", MODE="0666", SYMLINK+="rtl_sdr"'>>/etc/udev/rules.d/20.rtlsdr.rules

Check if listed in rule file.

cat /etc/udev/rules.d/20.rtlsdr.rules
init 6

After the Pi reboots to test your device by running command.

rtl_test