Problem after new Installation on 64 bit

Hi,
I’ve a new Installation on a Raspberry 4b with 64 Bit.
sudo apt-get update give me the follow lines at the end of the updatecheck.

N: Das Laden der konfigurierten Datei »raspberrypi-stable/binary-arm64/Packages« wird übersprungen, da das Depot »http://repo.feed.flightradar24.com flightradar24 InRelease« die Architektur »arm64« nicht unterstützt.
N: Das Laden der konfigurierten Datei »piaware/binary-arm64/Packages« wird übersprungen, da das Depot »http://flightaware.com/adsb/piaware/files/packages bullseye InRelease« die Architektur »arm64« nicht unterstützt.

What can i do?

Thanks

Wait for few days till Flighaware release 64-bit packages for Bookworm.

If your OS is 64-bit Bullseye, you can add 32-bit architecture as foreign architecture then Flightaware and Flightradar24 32-bit packages will install

sudo dpkg --add-architecture armhf  

sudo apt update

## Check if armhf has been added by following command

sudo dpkg --print-foreign-architectures    

## Above command will output "armhf"

 

1 Like

Thank you.
I do what you say, this is the output:
pi@xyz:~ $ sudo dpkg --add-architecture armhf
pi@xyz:~ $ sudo apt update
OK:2 https://apt.rb24.com bullseye InRelease
Holen:1 https://raw.githubusercontent.com/abcd567a/rpi/master ./ InRelease [2.115 B]
OK:3 http://www.flightaware.com/adsb/piaware/files/packages bullseye InRelease
OK:4 https://repos.influxdata.com/debian stable InRelease
OK:5 https://repos.influxdata.com/debian bullseye InRelease
Fehl:6 Index of /debian bullseye InRelease
Temporärer Fehlschlag beim Auflösen von »archive.raspberrypi.org«
Fehl:7 http://repo.feed.flightradar24.com flightradar24 InRelease
Temporärer Fehlschlag beim Auflösen von »repo.feed.flightradar24.com«
OK:8 https://apt.grafana.com stable InRelease
OK:9 Index of /debian bullseye InRelease
OK:10 Index of /debian bullseye-updates InRelease
OK:11 Index of /debian-security bullseye-security InRelease
Es wurden 2.115 B in 15 s geholt (140 B/s).
Paketlisten werden gelesen… Fertig
Abhängigkeitsbaum wird aufgebaut… Fertig
Statusinformationen werden eingelesen… Fertig
Alle Pakete sind aktuell.
N: Das Laden der konfigurierten Datei »piaware/binary-arm64/Packages« wird übersprungen, da das Depot »http://flightaware.com/adsb/piaware/files/packages bullseye InRelease« die Architektur »arm64« nicht unterstützt.
W: Fehlschlag beim Holen von http://repo.feed.flightradar24.com/dists/flightradar24/InRelease Temporärer Fehlschlag beim Auflösen von »repo.feed.flightradar24.com«
W: Fehlschlag beim Holen von http://archive.raspberrypi.org/debian/dists/bullseye/InRelease Temporärer Fehlschlag beim Auflösen von »archive.raspberrypi.org«
W: Einige Indexdateien konnten nicht heruntergeladen werden. Sie wurden ignoriert oder alte an ihrer Stelle benutzt.

pi@xyz:~ $ sudo dpkg --print-foreign-architectures
armhf

This is OK, as neither Flightaware nor Flightradar24 currently have 64-bit packages. These two sites currently have only 32-bit packages.

As you have now added architecture armhf to your 64-bit OS, their 32-bit packages can now be installed and work OK on your 64-bit OS.

Thank you very much!