Describe the bug
Bazaar currently fails to install any Flatpak application on Ubuntu 25.10 (with latest updates). While the system's core Flatpak installation functionality has been fixed and works correctly when installing applications directly via the command line, Bazaar consistently encounters an error during the installation process.
Steps to Reproduce:
- On Ubuntu 25.10, open the Bazaar application.
- Attempt to install any Flatpak application
- The installation fails and the following log output/error message is returned:
Running fusermount wrapper, redirecting to host...
fusermount3: file descriptor 5 is not a socket, can't send fuse fd
Running fusermount wrapper, redirecting to host...
fusermount3: entry for /var/tmp/flatpak-cache-PZQDF3/com.cassidyjames.butler-P1KHF3 not found in /etc/mtab
(bazaar:2): BAZAAR::FLATPAK-CRITICAL **: 11:02:35.617: Transaction failed to complete: Could not unmount revokefs-fuse filesystem at /var/tmp/flatpak-cache-PZQDF3/com.cassidyjames.butler-P1KHF3: Child process exited with code 1
OS
Ubuntu 25.10 Gnome 49
Output of flatpak info io.github.kolunmi.Bazaar. If you are on Bazzite please run rpm -qi bazaar
Bazaar - Discover and install applications
ID: io.github.kolunmi.Bazaar
Ref: app/io.github.kolunmi.Bazaar/x86_64/stable
Arch: x86_64
Branch: stable
Version: 0.5.8
License: GPL-3.0-or-later
Origin: flathub
Collection: org.flathub.Stable
Installation: system
Installed: 14.4 MB
Runtime: org.gnome.Platform/x86_64/49
Sdk: org.gnome.Sdk/x86_64/49
Commit: 8c67ba0a4076c63c7e2e5f66211802ded72cf523b8560d7ccd10589a4574d8b9
Parent: 2d3135a5408c397e1728c8135d2270342f164d0f7b8fe4f403fd96dbba50298d
Subject: Merge pull request #49 from kolunmi/0.5.8 (f3eaf0931e17)
Date: 2025-10-29 08:32:37 +0000
Extra information or context
No response
Describe the bug
Bazaar currently fails to install any Flatpak application on Ubuntu 25.10 (with latest updates). While the system's core Flatpak installation functionality has been fixed and works correctly when installing applications directly via the command line, Bazaar consistently encounters an error during the installation process.
Steps to Reproduce:
OS
Ubuntu 25.10 Gnome 49
Output of
flatpak info io.github.kolunmi.Bazaar. If you are on Bazzite please runrpm -qi bazaarBazaar - Discover and install applications ID: io.github.kolunmi.Bazaar Ref: app/io.github.kolunmi.Bazaar/x86_64/stable Arch: x86_64 Branch: stable Version: 0.5.8 License: GPL-3.0-or-later Origin: flathub Collection: org.flathub.Stable Installation: system Installed: 14.4 MB Runtime: org.gnome.Platform/x86_64/49 Sdk: org.gnome.Sdk/x86_64/49 Commit: 8c67ba0a4076c63c7e2e5f66211802ded72cf523b8560d7ccd10589a4574d8b9 Parent: 2d3135a5408c397e1728c8135d2270342f164d0f7b8fe4f403fd96dbba50298d Subject: Merge pull request #49 from kolunmi/0.5.8 (f3eaf0931e17) Date: 2025-10-29 08:32:37 +0000Extra information or context
No response
I can confirm this is an AppArmor issue on my system, and I was able to work around it without disabling AppArmor entirely and without downgrading fuse3.
What worked for me was modifying
/etc/apparmor.d/fusermount3like this:profile fusermount3 /usr/bin/fusermount3 {to:
profile fusermount3 /usr/bin/fusermount3 flags=(attach_disconnected) {sudo apparmor_parser -r /etc/apparmor.d/fusermount3Important: I did NOT add the broad
file,rule.After this, Bazaar was able to install Flatp…