Differenze tra le versioni di "RTL-SDR"
Jump to navigation
Jump to search
(Creata pagina con '==Installazione== (da: http://zr6aic.blogspot.dk/2013/02/setting-up-my-raspberry-pi-as-sdr-server.html) First update you Raspberry Pi wheezy Linux to the latest version. su...') |
|||
| Riga 5: | Riga 5: | ||
First update you Raspberry Pi wheezy Linux to the latest version. | First update you Raspberry Pi wheezy Linux to the latest version. | ||
| − | sudo apt-get update | + | sudo apt-get update |
Now install the required utils to compile the RTL-2832U USB dongle driver | Now install the required utils to compile the RTL-2832U USB dongle driver | ||
| − | sudo apt-get install git cmake libusb-1.0-0-dev build-essential | + | sudo apt-get install git cmake libusb-1.0-0-dev build-essential |
Now install the RTL-2832U USB dongle driver src and compile | Now install the RTL-2832U USB dongle driver src and compile | ||
| − | 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 |
| − | + | cd build | |
| − | mkdir build | + | cmake ../ -DINSTALL_UDEV_RULES=ON |
| − | + | make | |
| − | cd build | + | sudo make install |
| − | + | sudo ldconfig | |
| − | cmake ../ -DINSTALL_UDEV_RULES=ON | ||
| − | |||
| − | make | ||
| − | |||
| − | sudo make install | ||
| − | |||
| − | sudo ldconfig | ||
if it was successful you should see no return on the previous command. | if it was successful you should see no return on the previous command. | ||
| − | I have been told that the Raspberry crash if you don't reboot before inserting the dongle. | + | I have been told that the Raspberry crash if you don't reboot before inserting the dongle. So just run |
| − | + | sudo shutdown -r 0 | |
Install the RTL-2832U USB dongle on external powered USB HUB | Install the RTL-2832U USB dongle on external powered USB HUB | ||
| − | sudo ldconfig | + | sudo ldconfig |
| Riga 52: | Riga 45: | ||
Installazione: | Installazione: | ||
| − | cd ~ | + | cd ~ |
| − | + | git clone git://github.com/MalcolmRobb/dump1090.git | |
| − | git clone git://github.com/MalcolmRobb/dump1090.git | + | cd dump1090 |
| − | + | make | |
| − | cd dump1090 | + | ./dump1090 --interactive |
| − | |||
| − | make | ||
| − | |||
| − | ./dump1090 --interactive | ||
Versione delle 19:10, 16 nov 2013
Installazione
(da: http://zr6aic.blogspot.dk/2013/02/setting-up-my-raspberry-pi-as-sdr-server.html)
First update you Raspberry Pi wheezy Linux to the latest version.
sudo apt-get update
Now install the required utils to compile the RTL-2832U USB dongle driver
sudo apt-get install git cmake libusb-1.0-0-dev build-essential
Now install the RTL-2832U USB dongle driver src and compile
git clone git://git.osmocom.org/rtl-sdr.git cd rtl-sdr/ mkdir build cd build cmake ../ -DINSTALL_UDEV_RULES=ON make sudo make install sudo ldconfig
if it was successful you should see no return on the previous command.
I have been told that the Raspberry crash if you don't reboot before inserting the dongle. So just run
sudo shutdown -r 0
Install the RTL-2832U USB dongle on external powered USB HUB
sudo ldconfig
ADSB
(da: http://www.satsignal.eu/raspberry-pi/dump1090.html)
E' possibile ricevere le posizioni degli aerei in volo ricevendo i segnali inviati dai trasponder.
Installazione:
cd ~ git clone git://github.com/MalcolmRobb/dump1090.git cd dump1090 make ./dump1090 --interactive