536
Monster (lemmy.world)
submitted 10 months ago by Geert@lemmy.world to c/linuxmemes@lemmy.world
top 50 comments
sorted by: hot top controversial new old
[-] stepanzak@iusearchlinux.fyi 107 points 10 months ago

Why not? It always seemed to me like a lot of duplicated work to package everything on every distro.

[-] Chewy7324@discuss.tchncs.de 39 points 10 months ago

Yes, but each package manager has it's (dis-)advantages. It's great to have flatpak and docker to be able to run software on almost all distros, but the OS still needs a way to update.

Almost all immutable distros use multiple package manager.

  • Fedora Silverblue: rpm-ostree + flatpak (+ toolbox)
  • OpenSUSE MicroOS: zypper with snapshots (transactional-update) + flatpak (+ distrobox)
  • NixOS is unique since it only uses the Nix package manager
  • immutable Ubuntu will probably only use snap for OS + apps.

All those OS support distrobox and docker additionally.

[-] monk@lemmy.unboiled.info 17 points 10 months ago

NixOS is unique because it uses the only potent package manager (if we don't count that one reimplementation of Nix). Calling the others "package managers" becomes mostly a courtesy when NixOS enters the picture.

lalala with FS-level snapshots + flatpak + distrobox + a kitchen sink

look_what_they_need_to_mimic_the_fraction_of_our_power.png

[-] GuybrushThreepwo0d@programming.dev 15 points 10 months ago

I don't consider myself a dumb person but I couldn't figure out nix when last I decided to play with it. Theoretically it seems super interesting to me, but I really just can't dedicate the time again now to learn that esoteric syntax.

[-] Chewy7324@discuss.tchncs.de 17 points 10 months ago

The docs for NixOS aren't good. Much knowledge is on many blogs but who knows them all?

Having the OS defined declaratively is great but I also dislike the Nix language.

Once it's setup NixOS is great. Sharing configs with PC and laptop is awesome. Rollbacks are baked in.

Going off the https://github.com/Misterio77/nix-starter-configs helped me gettung started.

[-] silicon_reverie@lemmy.world 9 points 10 months ago* (last edited 10 months ago)

I absolutely loved NixOS on paper, and it's undoubtedly the best way to combat updates that break my dependency trees, but I still found myself spending a majority of my time attempting to hard-code various app configuration files into my convoluted configuration.nix with its esoteric syntax rather than actually using my computer. Am I missing something, or does a good install script covering my favorite packages and a git bare repo storing my dot-files get me 90% of the way there without the hassle of bending my whole OS around a single nix config monstrosity?

[-] Chewy7324@discuss.tchncs.de 2 points 10 months ago

Agreed, I'm also considering switching to an install script + btrfs snapshots. It worked quite well a few years ago, altough it doesn't solve configuration drift.

load more comments (1 replies)
[-] mac@infosec.pub 1 points 8 months ago

I found zero to nix to be a good tutorial

load more comments (1 replies)
[-] merthyr1831@lemmy.world 1 points 10 months ago

all the more reason to sunlight these old packaging formats and move to universal solutions like flatpak and nix

load more comments (3 replies)
[-] Synthead@lemmy.world 20 points 10 months ago

Linked dependencies, for one. What if your distro uses uClibc? A different imagemagick version? What about LTS distros? Immutable distros?

[-] MrSpArkle@lemmy.ca 35 points 10 months ago

What if who cares?

When I used to build app packages internally I also built packages for our own python and ruby versions for our in-house software. The motto was: “system packages are for system software”. We weren’t writing system software, we were writing business software and shipping it, so why be dependent on what Redhat or Debian provided?

Universal packages are just an extension of this philosophy, and is why things like docker and app stores are such a success. Burdening the user with getting system dependencies right is worse than the DLL hell of the old windows days.

[-] Synthead@lemmy.world 12 points 10 months ago

Docker is a success in some ways, but it's not a silver bullet. It's a great way to make a 800 KiB program ship in a complex 300 MiB box.

If you had an entire operating system built with static links, it would be giant and ugly. You have to stop and think: if it's such a great idea, then why does pretty much every distro supply packages with dynamic links?

When shipping your own software, yes, you certainly want control over your own runtime. If you rely on an OS-supplied Ruby, for example, then when Ruby 3.3.0 comes out, your gems will need to be rebuilt, and it'll happen by surprise. A runtime and shipping stuff to your own infra is much different than packages responsible for running the operating system.

[-] chellomere@lemmy.world 2 points 10 months ago

There's another aspect than size that I feel people overlook: security updates. When e.g. libcurl is duplicated in a million places, how do you update them all when a critical security issue is discovered in it? Who will update all the random flatpaks, snaps and docker images that happen to include it?

[-] MrSpArkle@lemmy.ca 2 points 10 months ago

Yeah, there is definitely a delineation between system and user, and like most things the line will be fuzzy.

But in that end-user software space, 300mb is a pittance to pay for a minor system package update not breaking their favorite application, or a user not being able to use software because their distro is one version behind on libfoo.

[-] Synthead@lemmy.world 5 points 10 months ago

Imagine a world where people say "I would use Linux, but I'm going to stay with Windows because Linux is too bloated."

I don't know where the recent surge of not wanting package dependencies is coming from. Folks even not wanting dynamic links. We're acting like Linux distros are somehow suddenly broken or impossible to maintain, yet there are hundreds of successful distros doing just that, and for decades.

[-] MrSpArkle@lemmy.ca 1 points 10 months ago

You gotta have more empathy for the average person.

If the average person cared about binary size in terms of bloat, then being that smartphone apps are almost all statically linked, why are smartphones the most popular computer in the world?

To them bloat would feel more like apps you can’t delete, or say ads in a key gui component.

The bloat most people will care about in terms of Linux is facing down a software update prompt with 1000 packages and feeling anxiety over the last such dialog box destroying the use of their favorite apps.

I’m glad there are hundreds of successful distros, their complexities will serve well the hundreds of Linux desktop users.

[-] Synthead@lemmy.world 2 points 10 months ago

The bloat most people will care about in terms of Linux is facing down a software update prompt with 1000 packages and feeling anxiety over the last such dialog box destroying the use of their favorite apps.

This would be a bug in packaging. File a bug with the distro.

This doesn't happen as often as you think on a properly-configured system.

[-] Chewy7324@discuss.tchncs.de 3 points 10 months ago

Usually people mean flatpak and other desktop-focused formats when talking about universal package formats.

Even docker images are usually built with traditionial package managers, except if they're built directly by Nix.

I agree that there won't be "the" package format, since they all have their tradeoffs. E.g. Nix updates need quite a bit of memory, so it isn't a good choice for resource constrained embedded use-cases.

load more comments (2 replies)
[-] djsaskdja@reddthat.com 42 points 10 months ago

Flatpak seems quite nice now days

[-] possiblylinux127@lemmy.zip 35 points 10 months ago

Fine. You can do what you want but for me personally I will just use flatpak.

[-] AlijahTheMediocre@lemmy.world 31 points 10 months ago

Oh no, apps directly from the developers, the horrors

[-] AlijahTheMediocre@lemmy.world 9 points 10 months ago

Flatpak with OSTree or ABroot, the future is now. Although it would be nice if Silverblue would automatically create a container and install non-flatpak apps into it, then add desktop.ini files automatically:

[-] umbrella@lemmy.ml 28 points 10 months ago* (last edited 10 months ago)

bad take, from a user AND developer standpoint

[-] Geert@lemmy.world 18 points 10 months ago
[-] shea@lemmy.blahaj.zone 11 points 10 months ago

i don't agree with your takes but i love your spirit. also lol that image filename

[-] Geert@lemmy.world 6 points 10 months ago

Mate I use flatpak too it's a meme I reposted not created

[-] MooseBoys@lemmy.world 6 points 10 months ago

Least helpful debugging duck.

[-] jackalope@lemmy.ml 2 points 10 months ago
[-] FuglyDuck@lemmy.world 3 points 10 months ago

The is not the question you should be asking.

You should be asking how they got a video of me before I ever sent it to anyone…

[-] Perroboc@lemmy.world 18 points 10 months ago
[-] mariusafa@lemmy.sdf.org 7 points 10 months ago

Hey that's pretty good, thanks!

load more comments (1 replies)
[-] IverCoder@lemm.ee 12 points 10 months ago* (last edited 10 months ago)

This is essential for the year of the Linux desktop to come.

[-] ReginaPhalange@lemmy.world 5 points 10 months ago

50 years and counting.
Any day now...

[-] AlijahTheMediocre@lemmy.world 1 points 10 months ago

32 years, Linux ain't THAT old

[-] AlmightySnoo@lemmy.world 9 points 10 months ago
[-] lnee@lemm.ee 6 points 10 months ago

laughs in immediate firefox updates

[-] Gentoo1337@sh.itjust.works 2 points 10 months ago
[-] lnee@lemm.ee 2 points 10 months ago

laughs in snapd

[-] Shatur@lemmy.ml 9 points 10 months ago* (last edited 10 months ago)

I see how it can be convenient for some distros to get the latest version or install something that is not in the official repo.

But I use ArchLinux and we always have latest versions and big repo + AUR, so I never used universal packages.

[-] twelvefloatinghands@lemmy.world 8 points 10 months ago

I nominate nix

load more comments
view more: next ›
this post was submitted on 03 Nov 2023
536 points (93.8% liked)

linuxmemes

20762 readers
1872 users here now

I use Arch btw


Sister communities:

Community rules

  1. Follow the site-wide rules and code of conduct
  2. Be civil
  3. Post Linux-related content
  4. No recent reposts

Please report posts and comments that break these rules!

founded 1 year ago
MODERATORS