Announcement

Collapse
No announcement yet.

Feed options for depreciated windows feeder

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

  • #91
    Originally posted by Tritium View Post

    wget https://repo-feed.flightradar24.com/...25-3_amd64.deb

    sudo dpkg -i fr24feed_1.0.25-3_amd64.deb


    got the error amd64 does not match system i386.

    this works;
    sudo dpkg -i fr24feed_1.0.26-9_armhf.deb
    but I cannot execute fr24feed binary file.

    Try i386 debian package. Most likely it will work on i686:
    Code:
    ## Add architecture I386
    
    sudo dpkg --add-architecture i386
    
    sudo apt update
    
    ## IMPORTANT: Purge existing installed fr24feed
    ## BEFORE installing the I386 .deb package
    
    sudo dpkg --purge fr24feed
    
    
    ## Now download and install I386 .deb package
    
    wget https://repo-feed.flightradar24.com/linux_x86_binaries/fr24feed_1.0.25-3_i386.deb
    
    sudo dpkg -i fr24feed_1.0.25-3_i386.deb
    Last edited by abcd567; 2022-07-11, 06:23.

    Comment

    Working...
    X