596
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
this post was submitted on 15 Oct 2024
596 points (98.9% liked)
Technology
59366 readers
1272 users here now
This is a most excellent place for technology news and articles.
Our Rules
- Follow the lemmy.world rules.
- Only tech related content.
- Be excellent to each another!
- Mod approved content bots can post up to 10 articles per day.
- Threads asking for personal tech support may be deleted.
- Politics threads may be removed.
- No memes allowed as posts, OK to post as comments.
- Only approved bots from the list below, to ask if your bot can be added please contact us.
- Check for duplicates before posting, duplicates may be removed
Approved Bots
founded 1 year ago
MODERATORS
With the different distros of Linux, do different things support different distros? Like Zoom is support on Arch but not Mint, and Steam is supported in Mint but not Arch; or if an app supports Linux, it is on all distros? And if there is differences, do you have different partitions for different types of Linux?
When an app supports linux, it can do so by either:
or
These last ones are sandboxed environments. That means they have their own dependencies isolated from your system, so they dont have to deal with every distros pecularities at the cost of using more storage space. This is very useful for developers and in your case benefitial for the user because you can have both steam and zoom via flatpak on mint, arch or any obscure distro that has flatpak available, without any major problems.
Edit: Formatting
Yup. The big downside to flatpak is that, as you said, it takes up more space.
To make a Windows comparison, imagine needing to install Java separately for every single program that needs it. Flatpaks tend to be orders of magnitude larger than technically necessary, simply because they’re sandboxed and come with everything they need to run, even if you already have it installed.
Isn't that pretty close to what already happens though? With all of the different versions of java, different companies packaging up their special versions of OpenJDK, I've got quite a few different java versions on my computer plus I'm pretty sure I've seen some software just package their own Java binary with the software presumably to limit Java version mismatches