RaspOS dependencies

Dear all,

i need to set up my ADSB from scratch. So I took a raspberry OS 64bit and flashed it successfully. Started the raspbi, extended the file system and did a full upgrade. When I the try to install dump1090-fa I get an error:

The following packages have unmet dependencies:
dump1090-fa : Depends: liblimesuite20.10-1 (>= 20.10.0+dfsg) but it is not installable
Depends: libsoapysdr0.7 (>= 0.7.2) but it is not installable

What do I need to do to get that solved?

Thanks a lot,

Marcus

Try installing PiAware first, then dump1090-fa.

Have you done:

apt update
apt dist-upgrade

?

If that doesn’t solve your issue and you just want to get going, give readsb a try: https://github.com/wiedehopf/adsb-scripts/wiki/Automatic-installation-for-readsb
See also this guide: https://github.com/wiedehopf/adsb-wiki/wiki/Raspbian-Lite:-ADS-B-receiver

You could also take a look at this pre-made image: https://adsb.im

(1) What method/command did you try to install dump1090-fa?

(2) Try following command to fix dependencies issue:

sudo apt --fix-broken install

 

I used the following commands:

wget https://flightaware.com/adsb/piaware/files/packages/pool/piaware/p/piaware-support/piaware-repository_7.2_all.deb
dpkg -i piaware-repository_7.2_all.deb
apt-get update
apt-get install dump1090-fa rtl-sdr -y

(1) Did you try the following command?
sudo apt --fix-broken install

(2) You are using version 7.2 of flightaware repisitory package, while current version of repo is 1.2

Please visit following page to see the current commands which use repo package ver 1.2

https://www.flightaware.com/adsb/piaware/install

 

2 Likes

Yes I did but didn’t help

Installing piaware first results in:

piaware : Depends: libboost-regex1.74.0-icu67 but it is not installable
Depends: libffi7 (>= 3.3~20180313) but it is not installable
Depends: libmpdec3 but it is not installable

Thanks @abcd567 that works!