this post was submitted on 20 Apr 2026
2 points (100.0% liked)
Linux
64877 readers
1016 users here now
From Wikipedia, the free encyclopedia
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.
Rules
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
- No misinformation
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
founded 7 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
This is interesting, but I wouldn't consider this to be at all comparable to Flatpak. From what I can see the only purpose of using bubblewrap here is the dependency isolation (without having to recompile the world ala Nix), which does have some value but it feels misleading to even call it a sandbox.
It mounts
/homeand/runinto the ~~sandbox~~ chroot, which means that "sandboxed" applications can do things like reading your SSH keys, dumping your keyring or escaping the sandbox via write to.bashrc(so most of the attacks you'd want to prevent). This is presumably done because without/homeaccess you wouldn't be able to write to the filesystem and without/runaccess you can't even display a graphical window, which would make the packages quite useless.XDG Desktop Portal solves this by allowing filtered dbus access controlled by package metadata (
/.flatpak-info), and then having sandboxed applications use portals to access files, secrets and other resources. The metadata is a major flaw in Flatpaks design (note that a lot of the most popular Flatpaks want full$HOMEaccess), but it's also what allows Flatpak to be useful. In this project, there's no metadata since the packages just come from Alpine repositories.So in other words, it fixes all of the shit that makes Flatpak broken and useless?
In the sense that allowing a malicious application to steal your SSH keys is "fixing", yes.