Difference between revisions of "ADS-B: ADSBox"
Jump to navigation
Jump to search
Onnowpurbo (talk | contribs) (Created page with "Sumber: http://ucideas.org/projects/hard/adsb/index.html '''Rusia''' ==Download== cd /usr/local/src wget http://ucideas.org/projects/hard/adsb/adsbox-20180427.tar.gz...") |
Onnowpurbo (talk | contribs) |
||
| Line 5: | Line 5: | ||
cd /usr/local/src | cd /usr/local/src | ||
wget http://ucideas.org/projects/hard/adsb/adsbox-20180427.tar.gz | wget http://ucideas.org/projects/hard/adsb/adsbox-20180427.tar.gz | ||
| + | tar zxvf adsbox-20180427.tar.gz | ||
| + | cd /usr/local/src | ||
| + | wget https://sqlite.org/2019/sqlite-amalgamation-3300100.zip | ||
| + | unzip sqlite-amalgamation-3300100.zip | ||
| + | mv sqlite-amalgamation-3300100 sqlite3 | ||
| + | |||
| + | cd /usr/local/src/adsbox | ||
| + | make | ||
| + | |||
| + | |||
| + | Compile with SQLite notes: | ||
| + | - download SQLite source from http://sqlite.org/download.html. | ||
| + | - place sqlite3 directory with SQLite amalgamation source in the | ||
| + | same level as ADSBox source. Your directory structure should look like | ||
| + | ./adsbox | ||
| + | /htdocs | ||
| + | Makefile | ||
| + | ... | ||
| + | ./sqlite3 | ||
| + | sqlite3.c | ||
| + | sqlite3.h | ||
| + | ... | ||
| + | - then cd to ADSBox source directory and type 'make' there. | ||
| + | |||
| + | Google Earth notes: | ||
| + | - install GE; | ||
| + | - place adsbox.kml file (see ADSBox source dir) in preffered directory; | ||
| + | - open adsbox.kml in editor and point ADSBox host IP | ||
| + | and port (8080 as default); | ||
| + | - start ADSBox server then open adsbox.kml in GE. | ||
| + | |||
| + | Web server notes: | ||
| + | - open ADSBox info page (e.g http://192.168.1.6:8080) in | ||
| + | browser and see current status. | ||
| + | - you may also open SQLite web interface at http://192.168.x.x:8080/sqlite.html | ||
| + | (run with --db-edit option to enable write queries). | ||
| + | |||
| + | Librtlsdr compile notes: | ||
| + | - set WITH_RTLSDR=yes in Makefile to enable USB SDR dongles support. | ||
| + | You may need to point rtl-sdr.h and librtlsdr.so files location also. | ||
Revision as of 05:27, 5 January 2020
Sumber: http://ucideas.org/projects/hard/adsb/index.html Rusia
Download
cd /usr/local/src wget http://ucideas.org/projects/hard/adsb/adsbox-20180427.tar.gz tar zxvf adsbox-20180427.tar.gz
cd /usr/local/src wget https://sqlite.org/2019/sqlite-amalgamation-3300100.zip unzip sqlite-amalgamation-3300100.zip mv sqlite-amalgamation-3300100 sqlite3
cd /usr/local/src/adsbox make
Compile with SQLite notes:
- download SQLite source from http://sqlite.org/download.html. - place sqlite3 directory with SQLite amalgamation source in the same level as ADSBox source. Your directory structure should look like ./adsbox
/htdocs Makefile ...
./sqlite3
sqlite3.c sqlite3.h ...
- then cd to ADSBox source directory and type 'make' there.
Google Earth notes:
- install GE; - place adsbox.kml file (see ADSBox source dir) in preffered directory; - open adsbox.kml in editor and point ADSBox host IP and port (8080 as default); - start ADSBox server then open adsbox.kml in GE.
Web server notes:
- open ADSBox info page (e.g http://192.168.1.6:8080) in browser and see current status. - you may also open SQLite web interface at http://192.168.x.x:8080/sqlite.html (run with --db-edit option to enable write queries).
Librtlsdr compile notes:
- set WITH_RTLSDR=yes in Makefile to enable USB SDR dongles support. You may need to point rtl-sdr.h and librtlsdr.so files location also.