Advertisement
Guest User

Untitled

a guest
Nov 27th, 2013
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.74 KB | None | 0 0
  1. apt-get install libtool python-zmq python-opengl libqt4-core python-matplotlib python-scipy python-lxml automake build-essential libboost-all-dev libusb-1.0-0-dev python-cheetah doxygen python-docutils git cmake libcppunit-dev fftw3-dev libfftw3-dev libgsl0-dev swig python2.7 libsdl1.2-dev python-wxgtk2.8 libqt4-dev libqwt-dev pyqt4-dev-tools python-qwt5-qt4 python-numpy python-setuptools python-gtk2-dev liborc-0.4-dev python-sphinx
  2. Gnuradio
  3.  
  4. apt-get install qtcreator qt5-default pulseaudio
  5. Gqrx
  6.  
  7. cd ~/
  8. mkdir SDR
  9. cd SDR
  10.  
  11. git clone git://github.com/EttusResearch/uhd.git
  12. cd uhd/host && mkdir build && cd build
  13. cmake ../
  14. make
  15. make install
  16. ldconfig
  17. cd ../../../
  18.  
  19. USRP
  20. echo "@pluto - rtprio 99" >> /etc/security/limits.conf
  21.  
  22. git clone git://github.com/gnuradio/gnuradio.git
  23. cd gnuradio && mkdir build && cd build
  24. cmake ../ -Wno-dev
  25. make
  26. make install
  27. ldconfig
  28. cd ../../
  29.  
  30. git clone git://git.osmocom.org/rtl-sdr.git
  31. cd rtl-sdr/ && mkdir build && cd build
  32. cmake ../ -DINSTALL_UDEV_RULES=ON
  33. make
  34. make install
  35. ldconfig
  36. cd ../../
  37.  
  38. git clone git://git.osmocom.org/gr-osmosdr
  39. cd gr-osmosdr/ && mkdir build && cd build/
  40. cmake ../ -Wno-dev
  41. make
  42. make install
  43. ldconfig
  44. cd ../../
  45.  
  46. git clone https://github.com/bistromath/gr-air-modes.git
  47. cd gr-air-modes && mkdir build && cd build
  48. cmake ../
  49. make
  50. make install
  51. ldconfig
  52. cd ../../
  53.  
  54. git clone git://git.osmocom.org/libosmo-dsp
  55. cd libosmo-dsp
  56. autoreconf -i -f
  57. ./configure
  58. make
  59. sudo make install
  60. cd ../
  61.  
  62. git clone git://git.osmocom.org/gr-iqbal
  63. cd gr-iqbal && mkdir build && cd build
  64. cmake ../
  65. make
  66. make install
  67. ldconfig
  68. cd ../../
  69.  
  70. git clone https://github.com/csete/gqrx.git
  71. cd gqrx && mkdir build && cd build
  72. qmake-qt4 ../
  73. make
  74. make install
  75. ldconfig
  76. cd ../../
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement