Difference between revisions of "SDR: gqrx Ubuntu 12.04"
		
		
		
		
		
		Jump to navigation
		Jump to search
		
				
		
		
	
Onnowpurbo (talk | contribs)  | 
				Onnowpurbo (talk | contribs)   | 
				||
| Line 1: | Line 1: | ||
| + | ==Persiapan==  | ||
| − | + | Buat directory  | |
| − | + |  mkdir /usr/local/src/SDR  | |
| + |  cd /usr/local/src/SDR  | ||
| − | + | Instalasi paket pendukung  | |
| − | |||
| − | |||
| − | |||
  sudo apt-get install cmake swig libcppunit-dev python-cheetah doxygen \  |   sudo apt-get install cmake swig libcppunit-dev python-cheetah doxygen \  | ||
| Line 13: | Line 12: | ||
  libusb++-dev libusb-dev libusb-1.0-0-dev libgsl0-dev python-wxgtk2.6  |   libusb++-dev libusb-dev libusb-1.0-0-dev libgsl0-dev python-wxgtk2.6  | ||
| − | + | ==Install GNURadio==  | |
| − | + | Lakukan  | |
| + |  cd /usr/local/src/SDR  | ||
  git clone git://gnuradio.org/gnuradio  |   git clone git://gnuradio.org/gnuradio  | ||
| − |   cd gnuradio  | + |   cd /usr/local/src/SDR/gnuradio  | 
| − | + | Compile  | |
  mkdir build  |   mkdir build  | ||
  cd build  |   cd build  | ||
  cmake ../  |   cmake ../  | ||
| − | |||
| − | |||
| − | |||
  make  |   make  | ||
  sudo make install  |   sudo make install  | ||
  sudo ldconfig  |   sudo ldconfig  | ||
| − | ==  | + | ==Install rtl_sdr==  | 
| − | + | Lakukan  | |
| − |   cd   | + |   cd /usr/local/src/SDR  | 
  git clone git://git.osmocom.org/rtl-sdr.git  |   git clone git://git.osmocom.org/rtl-sdr.git  | ||
| − | + | Masuk ke directory rtl-sdr & lakukan  | |
  cd rtl-sdr/  |   cd rtl-sdr/  | ||
| Line 45: | Line 42: | ||
  cd build  |   cd build  | ||
  cmake ../  |   cmake ../  | ||
| − | |||
| − | |||
  make  |   make  | ||
| Line 57: | Line 52: | ||
After copying these over you need to unplug and replug the dongle.  | After copying these over you need to unplug and replug the dongle.  | ||
| − | |||
| − | |||
| − |   cd   | + | ==Install gr_osmoSDR==  | 
| + | |||
| + | Masuk ke directory  | ||
| + | |||
| + |   cd /usr/local/src/SDR  | ||
  git clone git://git.osmocom.org/gr-osmosdr  |   git clone git://git.osmocom.org/gr-osmosdr  | ||
| − | + | Lakukan  | |
  cd gr-osmosdr/  |   cd gr-osmosdr/  | ||
| Line 70: | Line 67: | ||
  cd build/  |   cd build/  | ||
  cmake ../ -Wno-dev  |   cmake ../ -Wno-dev  | ||
| − | |||
| − | |||
  make  |   make  | ||
| Line 77: | Line 72: | ||
  sudo ldconfig  |   sudo ldconfig  | ||
| − | + | ==Install gqrx==  | |
| − | + | Masuk ke directory  | |
| − |   cd   | + |   cd /usr/local/src/SDR  | 
  git clone https://github.com/csete/gqrx.git  |   git clone https://github.com/csete/gqrx.git  | ||
| − | + | Lakukan  | |
  cd gqrx  |   cd gqrx  | ||
  qtcreator ./gqrx.pro  |   qtcreator ./gqrx.pro  | ||
| − | + | Untuk membuat paket klik Build->Build All.  | |
| + | Setelah selesai, masukan SDR dan masuk ke directory build dan jalankan gqrx  | ||
  cd ../gqrx-build-desktop-Qt_4_8_1_in_PATH__System__Release/  |   cd ../gqrx-build-desktop-Qt_4_8_1_in_PATH__System__Release/  | ||
  ./gqrx  |   ./gqrx  | ||
| − | + | gqrx akan jalan  | |
==Pranala Menarik==  | ==Pranala Menarik==  | ||
Revision as of 13:36, 15 October 2012
Persiapan
Buat directory
mkdir /usr/local/src/SDR cd /usr/local/src/SDR
Instalasi paket pendukung
sudo apt-get install cmake swig libcppunit-dev python-cheetah doxygen \ libboost-all-dev python-sphinx fftw3-dev python-numpy libqwt-dev \ libusb++-dev libusb-dev libusb-1.0-0-dev libgsl0-dev python-wxgtk2.6
Install GNURadio
Lakukan
cd /usr/local/src/SDR git clone git://gnuradio.org/gnuradio cd /usr/local/src/SDR/gnuradio
Compile
mkdir build cd build cmake ../ make sudo make install sudo ldconfig
Install rtl_sdr
Lakukan
cd /usr/local/src/SDR git clone git://git.osmocom.org/rtl-sdr.git
Masuk ke directory rtl-sdr & lakukan
cd rtl-sdr/ mkdir build cd build cmake ../
make sudo make install sudo ldconfig
This package includes some important udev rules, so lets take care of them now.
sudo cp rtl-sdr.rules /etc/udev/rules.d/40-basic-permissions.rules
After copying these over you need to unplug and replug the dongle.
Install gr_osmoSDR
Masuk ke directory
cd /usr/local/src/SDR git clone git://git.osmocom.org/gr-osmosdr
Lakukan
cd gr-osmosdr/ mkdir build cd build/ cmake ../ -Wno-dev
make sudo make install sudo ldconfig
Install gqrx
Masuk ke directory
cd /usr/local/src/SDR git clone https://github.com/csete/gqrx.git
Lakukan
cd gqrx qtcreator ./gqrx.pro
Untuk membuat paket klik Build->Build All. Setelah selesai, masukan SDR dan masuk ke directory build dan jalankan gqrx
cd ../gqrx-build-desktop-Qt_4_8_1_in_PATH__System__Release/ ./gqrx
gqrx akan jalan