Workshop/Gnuradio

From Hackerspace Amersfoort
Revision as of 10:42, 3 December 2012 by Zarya (talk | contribs)
Jump to navigation Jump to search

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.

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

Credits