this post was submitted on 09 Jun 2023
43 points (100.0% liked)

Linux

47344 readers
1237 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

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 12 points 1 year ago (3 children)

One of the downsides seems like since the developer packages everything together, I’m reliant on them to push out changes. For example if some dependency needs a critical security update then I’m relying on every flatpak author to apply that change and push out a new version. But if I’m installing packages directly, I can update that one package and be done with it across my system.

[–] [email protected] 9 points 1 year ago (2 children)

Not all dependencies are packaged by the dev. Flatpacks run on top of runtimes which are basically bundles of libraries (most of the important common ones) that are updated independently. A dev only needs to include libraries not in the runtimes.

[–] [email protected] 4 points 1 year ago

But tons of libraries used out there are not in those runtimes, and this scenario still applies to them.

[–] [email protected] 2 points 1 year ago

Thanks, I didn't know that.

[–] [email protected] 2 points 1 year ago (2 children)

Never thought of this scenario. Do they address it?

[–] [email protected] 7 points 1 year ago* (last edited 1 year ago)

That's why runtimes are the way they are: for most simple desktop applications, they shouldn't really need much on top of what is already included in the GNOME, KDE, or Freedesktop runtime they depend on. (If you're curious, flatpak run org.gnome.Platform and poke around). Those runtimes get regular updates within each branch for important bug fixes. Alas, many applications add at least one or two external libraries they need to build / distribute themselves, and some applications add a lot of them. But it isn't like every application bundles its own libssl or something.

[–] [email protected] 3 points 1 year ago

Most of the time, dependencies are handled by the runtimes. Those are updated routinely and do get security updates too.

https://docs.flatpak.org/en/latest/basic-concepts.html

[–] [email protected] 0 points 1 year ago

In theory, the CI/CD would generate the package automatically when the git repo get tagged for release if they do configure for it, so it should be able to release it rather quickly. For instance, I get endless amount of update from Kate editor on Flatpak, because it constantly get tagged for minor releases.