this post was submitted on 15 Oct 2024
573 points (98.8% liked)

Technology

58701 readers
4043 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related content.
  3. Be excellent to each another!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, to ask if your bot can be added please contact us.
  9. Check for duplicates before posting, duplicates may be removed

Approved Bots


founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] tomatoely@sh.itjust.works 13 points 1 day ago* (last edited 1 day ago) (1 children)

When an app supports linux, it can do so by either:

  • packaging it for popular distro repositories,
  • giving instructions on how to build the app from the source code

or

  • package it on distro-agnostic, package management solutions like flatpak or appImage.

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

[–] PM_Your_Nudes_Please@lemmy.world 2 points 1 day ago (1 children)

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.

[–] Trainguyrom@reddthat.com 1 points 2 hours ago

imagine needing to install Java separately for every single program that needs it

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