this post was submitted on 12 Mar 2026
137 points (91.5% liked)

Linux

12881 readers
716 users here now

A community for everything relating to the GNU/Linux operating system (except the memes!)

Also, check out:

Original icon base courtesy of lewing@isc.tamu.edu and The GIMP

founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] vk6flab@lemmy.radio 6 points 1 week ago (1 children)

I use Docker and apt instead. The definition of an application lives in a single text file and you don't give it anymore resources or permissions than it needs.

So much so, that I wrote a bunch of scripts to make life easier, without ever needing to go anywhere near appimage, flatpak or snap.

https://github.com/ITmaze/remote-docker

[–] SweetCriticalPumpkin@reddthat.com 6 points 1 week ago (1 children)

cool but isn't the whole point of flatpaks to provide an alternative for when the "apt" version doesn't exist?

[–] vk6flab@lemmy.radio 1 points 1 week ago

I use apt, but you don't have to, instead you can use any package manager from any distribution and use that distribution within the container.

If an application isn't packaged, you can use the same mechanism to compile from source.

IMHO, if it's not packaged and you can't compile from source, it's time to look for a different application.