Announcement

Collapse
No announcement yet.

PI24: Replace dump1090 v1.14 -> pre-build package of dump1090 v1.15

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • abcd567
    replied
    Two other interesting threads:

    (1) One Pi, Two Dongles, Two Maps

    (2) Two instances of FR24feed on the same linux box?
    Last edited by abcd567; 2019-07-13, 23:12.

    Leave a comment:


  • abcd567
    replied
    MANUAL METHOD: (Good for Learning)
    "If you want to help someone, dont give him fish, teach him how to catch the fish"

    dump1090-mutability ver 1.15-dev-2.png

    INTRODUCTION
    I have compiled the installation package of dump1090-mutability ver 1.15 from source code, uploaded the package to Github, and made this installation package publicly downloadble. Now anyone can replace the PI24's dump1090-mutability ver 1.14 by ver 1.15~dev installation package I have uploaded to Github.


    STEP-1:
    Opened file install_dump1090.sh to modify
    Code:
    sudo nano /usr/lib/fr24/install_dump1090.sh
    Commented-out three lines (red) for ver 1.14, and added 3 lines (green) for ver 1.15, as shown below.

    NOTE: To comment-out a line of code, you have to add # at start of the line, as I have done in the red lines below.

    Code:
        # Download and install dump1090-mutability
    [COLOR="#FF0000"]#    wget -O /tmp/dump1090-mutability_1.14_armhf.deb https://github.com/mutability/dump1090/releases/download/v1.14/dump1090-mutability_1.14_armhf.deb
    #    dpkg -i /tmp/dump1090-mutability_1.14_armhf.deb
    #    rm -f /tmp/dump1090-mutability_1.14_armhf.deb
    [/COLOR]
    
    [COLOR=#00aa00]    wget -O /tmp/dump1090-mutability_1.15_dev_armhf.deb https://github.com/abcd567a/dump1090/releases/download/v1/dump1090-mutability_1.15_dev_armhf.deb
        dpkg -i /tmp/dump1090-mutability_1.15_dev_armhf.deb
        rm -f /tmp/dump1090-mutability_1.15_dev_armhf.deb[/COLOR]

    STEP-2:
    Purged ver 1.14
    Code:
    sudo dpkg --purge dump1090-mutability

    STEP-3:
    Run modified file install_dump1090.sh to install ver 1.15
    Code:
    cd /usr/lib/fr24/
    
    sudo ./install_dump1090.sh
    
    sudo service lighttpd force-reload
    
    sudo systemctl restart fr24feed

    STEP-4:

    Reboot RPi

    Code:
    sudo reboot

    STEP-5:
    Check
    Code:
    apt-cache policy dump1090-mutability
    dump1090-mutability:
      Installed: 1.15~dev
      Candidate: 1.15~dev
      Version table:
     *** 1.15~dev 100
            100 /var/lib/dpkg/status
    Code:
    fr24feed-status
    [ ok ] FR24 Feeder/Decoder Process: running.
    [ ok ] FR24 Stats Timestamp: 2019-06-05 17:57:04.
    [ ok ] FR24 Link: connected [UDP].
    [ ok ] FR24 Radar: T-CYYZ50.
    [ ok ] FR24 Tracked AC: 23.
    [ ok ] Receiver: connected (7183 MSGS/0 SYNC).
    [ ok ] FR24 MLAT: ok [UDP].
    [ ok ] FR24 MLAT AC seen: 22.
    Last edited by abcd567; 2019-07-14, 15:45.

    Leave a comment:


  • Skipper-Kolding
    replied
    Thanks.
    So easy to use, and works perfectly.

    Leave a comment:


  • PI24: Replace dump1090 v1.14 -> pre-build package of dump1090 v1.15

    How to replace PI24's integral dump1090-mutability v1.14 by dump1090-mutability v1.15


    Map of PI24's Default ver 1.14
    At "http://IP-of-PI/dump1090/"
    dump1090-mutability ver 1.14.png


    Map After Replacing by ver 1.15~dev
    At "http://IP-of-PI/dump1090/"
    dump1090-mutability ver 1.15-dev.png

    The replacement can be done by any one of the following two methods (OPTION-1 or OPTION-2).

    OPTION-1: Automated method given below (Very easy).
    The user has only to issue following command, and all is done automatically:

    Code:
    sudo bash -c "$(wget -O - https://raw.githubusercontent.com/abcd567a/dump1090/master/PI24_replace_dump1090_v1.14_by_v1.15.sh)"
    The script will take some time to finish.
    After script finishes, following message will be displayed:

    Code:
    [COLOR="#00BB00"]---------------
    ALL DONE !
    ---------------[/COLOR]
    [COLOR="#FF0000"]REBOOT RPi[/COLOR]
    
    After reboot, go to your browser and check map on following address
    http://IP-of-Pi/dump1090/
    
    If new map does not show:
    Clear browser cache (Ctrl+Shift+Delete) and Reload Browser (Ctrl+F5)
    
    Check fr24feed status by following command:
    [COLOR="#00BB00"]fr24feed-status[/COLOR]
    .


    OPTION-2: Manually by method given in Post # 3 (Good for learning).
    "If you want to help someone, dont give him fish, teach him how to catch the fish"
    Last edited by abcd567; 2019-07-14, 15:42.
Working...
X