Workshop/Gnuradio
Workshop
- The workshop will be held in Bitlair
- The date for this workshop is still unknown, keep a eye on this page for more information.
Requirements
- Laptop running linux (debian or ubuntu preferred)
- If you do not have a laptop running debian or ubuntu you can run this in a vmware image this does not work as wel as running it directly on the hardware but it works.
- One of the supported RTL SDR's (http://www.ebay.com/itm/ws/eBayISAPI.dll?ViewItem&item=370696722384)
Install guide
- This is still a work in progress
rtl_sdr
aptitude -y install build-essential git cmake libusb-1.0-0-dev mkdir gnuradio_workshop cd gnuradio_workshop git clone git://git.osmocom.org/rtl-sdr.git cd rtl-sdr mkdir build cd build cmake ../ make sudo make install sudo ln -s /usr/local/lib/pkgconfig/librtlsdr.pc /usr/share/pkgconfig/librtlsdr.pc
Gnuradio
git clone git://gnuradio.org/gnuradio cd gnuradio mkdir build cd build cmake ../ make sudo make install
gr-osmosdr and gr-baz
gr-osmosdr
cd .. (back to the gnuradio directory) git clone git://git.osmocom.org/gr-osmosdr.git cd gr-osmosdr/ mkdir build cd build cmake ../ make sudo make install
gr-baz
cd ../../ svn checkout -q http://svn.spench.net/main/gr-baz/ autoreconf -i -f ./configure make -e sudo make install