From cd0d5971e2f1b450f4759e514614d5a4dda62247 Mon Sep 17 00:00:00 2001 From: Antonio M Date: Sat, 10 Jan 2026 18:54:56 +0100 Subject: [PATCH] In Ubuntu Desktop 25.10, dump1090 is dump1090-mutability. Because of this, cmd_exists dump1090 fails even after successful apt install. Added code to create a symbolic link from /usr/local/sbin/dump1090 to the dump1090-mutability if it exists --- setup.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) mode change 100644 => 100755 setup.sh diff --git a/setup.sh b/setup.sh old mode 100644 new mode 100755 index 91c7f76..02d905d --- a/setup.sh +++ b/setup.sh @@ -439,9 +439,15 @@ install_debian_packages() { $SUDO apt-get install -y python3-skyfield >/dev/null 2>&1 || true progress "Installing dump1090" - if ! cmd_exists dump1090; then + if ! cmd_exists dump1090 && ! cmd_exists dump1090-mutability; then + #export DEBIAN_FRONTEND=noninteractive apt_try_install_any dump1090-fa dump1090-mutability dump1090 || true fi + if ! cmd_exists dump1090; then + if cmd_exists dump1090-mutability; then + $SUDO ln -s $(which dump1090-mutability) /usr/local/sbin/dump1090 + fi + fi cmd_exists dump1090 || install_dump1090_from_source_debian progress "Configuring udev rules"