Unable to install PiAware on new Ubuntu host

Trying to follow the instructions to install the package on an existing Pi running Ubuntu 23.10 and getting this error:

Hit:2 http://ports.ubuntu.com/ubuntu-ports mantic InRelease
Ign:1 http://www.flightaware.com/adsb/piaware/files/packages mantic InRelease
Hit:3 http://ports.ubuntu.com/ubuntu-ports mantic-updates InRelease
Hit:5 http://ports.ubuntu.com/ubuntu-ports mantic-security InRelease
Err:4 http://www.flightaware.com/adsb/piaware/files/packages mantic Release
  404  Not Found [IP: 2606:4700:4400::6812:27c9 80]
Reading package lists... Done
E: The repository 'http://flightaware.com/adsb/piaware/files/packages mantic Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.

Anything I can do with that to get it going? Don’t particularly want to reflash the dang thing with Raspbian if I can avoid it. Would also prefer to be on an apt managed distro so I can just update it without recompiling.

Thanks

We don’t provide prebuilt packages for Ubuntu. flightaware-apt-repository should have warned you about this:

flightaware-apt-repository: FlightAware does not provide packages for your distribution/architecture, the generated apt configuration may not work

You’ll need to build from source.

 

 

Hardware: RPi Model 4 with 4GB ram
Operating System: 64-bit Ubuntu Server 23.10 (Mantic Minotaur)
Packages built from source-code: piaware, dump1090-fa, dump978-fa, and piaware-web

piaware:
sudo bash -c "$(wget -O - https://raw.githubusercontent.com/abcd567a/piaware-ubuntu-debian-amd64/master/install-piaware.sh)"

dump1090-fa:
sudo bash -c "$(wget -O - https://raw.githubusercontent.com/abcd567a/piaware-ubuntu-debian-amd64/master/install-dump1090-fa.sh)"

dump978-fa:
sudo bash -c "$(wget -O - https://raw.githubusercontent.com/abcd567a/piaware-ubuntu-debian-amd64/master/install-dump978-fa.sh)"

piaware-web:
sudo bash -c "$(wget -O - https://raw.githubusercontent.com/abcd567a/piaware-ubuntu-debian-amd64/master/install-piaware-web.sh)"

 

Click on Screenshot to See Larger Size

 

2 Likes

@rjankowski

Package install of piaware on Ubuntu 23.10

Packages are available in my PPA (Personal Package Archieve) for following architectures:

  • amd64 / x86_64
  • arm64 / aarch64
  • armhf

https://github.com/abcd567a/ubuntu23/blob/master/README.md

 

sudo wget -O /etc/apt/sources.list.d/abcd567a.list https://abcd567a.github.io/ubuntu23/abcd567a.list  
sudo wget -O /etc/apt/trusted.gpg.d/abcd567a-key.gpg https://abcd567a.github.io/ubuntu23/KEY2.gpg  
sudo apt update  

sudo apt install piaware
sudo apt install dump1090-fa
sudo apt install dump978-fa
sudo apt install piaware-web

 

To remove this PPA repository from your Computer:
Deleting this repository from your Pi and PC apt sources list is simple. Just issue following 2 command and it is done:

sudo rm /etc/apt/sources.list.d/abcd567a.list
sudo apt update

copy:
@obj
@eric1tran

 

1 Like

Awesome, thank you!

Let’s see if I can manage to get this new node up and running (been tweaking GPSd and Chrony before trying to mess around with PiAware)

If you edit the software repository list and edit it to reflect bookworm, Piaware and dump1090 installs perfectly.

sudo nano /etc/apt/sources.list.d/flightaware-apt-repository.list

Change the name mantic to bookworm and save the file. update and use Flightaware piaware installation procedures from their website.

1 Like

@shull895

Good hack!

However this hack will be applicable only to 32-bit (armhf) and 64-bit (arm64) versions of Ubuntu installed on RPi.

This hack will not work on Ubuntu amd64 /x86_64 versions installed on PC or Laptop.

 

1 Like

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.