Workshop/Gnuradio: verschil tussen versies

Uit Hackerspace Amersfoort
Naar navigatie springen Naar zoeken springen
Zarya (overleg | bijdragen)
Created page with "=== 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-..."
 
Zarya (overleg | bijdragen)
kGeen bewerkingssamenvatting
Regel 1: Regel 1:
=== rtl_sdr ===
=== rtl_sdr ===
aptitude -y install build-essential git cmake libusb-1.0-0-dev
aptitude -y install build-essential git cmake libusb-1.0-0-dev
mkdir gnuradio_workshop
mkdir gnuradio_workshop
cd gnuradio_workshop
cd gnuradio_workshop
git clone git://git.osmocom.org/rtl-sdr.git
git clone git://git.osmocom.org/rtl-sdr.git
cd rtl-sdr
cd rtl-sdr
mkdir build
mkdir build
cd build
cd build
cmake ../
cmake ../
make
make
sudo make install
sudo make install
sudo ln -s /usr/local/lib/pkgconfig/librtlsdr.pc /usr/share/pkgconfig/librtlsdr.pc
sudo ln -s /usr/local/lib/pkgconfig/librtlsdr.pc /usr/share/pkgconfig/librtlsdr.pc




=== Gnuradio ===
=== Gnuradio ===
git clone git://gnuradio.org/gnuradio
git clone git://gnuradio.org/gnuradio
cd gnuradio
cd gnuradio
mkdir build
mkdir build
cd build
cd build
cmake ../
cmake ../
make
make
sudo make install
sudo make install


=== gr-osmosdr and gr-baz ===
=== gr-osmosdr and gr-baz ===
==== gr-osmosdr ====
==== gr-osmosdr ====
cd .. (back to the gnuradio directory)
cd .. (back to the gnuradio directory)
git clone git://git.osmocom.org/gr-osmosdr.git
git clone git://git.osmocom.org/gr-osmosdr.git
cd gr-osmosdr/
cd gr-osmosdr/
mkdir build
mkdir build
cd build
cd build
cmake ../
cmake ../
make
make
sudo make install
sudo make install


==== gr-baz ====
==== gr-baz ====
cd ../../
cd ../../
svn checkout -q http://svn.spench.net/main/gr-baz/
svn checkout -q http://svn.spench.net/main/gr-baz/
autoreconf -i -f
autoreconf -i -f
./configure
./configure
make -e
make -e
sudo make install
sudo make install

Versie van 3 dec 2012 10:34

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