• 1 Post
  • 75 Comments
Joined 1 year ago
cake
Cake day: June 25th, 2023

help-circle

  • Fair cop on the inconveniences, although I’ve found it fine after an adaption phase, coming from fedora it was lesser than hopping to a new distro. Hard agree on knowing the nuances being problematic, clarity and accessible education is sorely missing, certainly the steepest part of the learning curve.

    I just run ‘distrobox upgrade -all’ in my Daily.service, didn’t need quadlets (although after adaption I quite like them for containers now).


  • Why would I use a system that isn’t supposed to change if I want to change it?

    There’s a bunch of benefits, atomic updates, intrinsic rollback, security of immutability, safe automatic updating and it goes on. Some things are not quite ready yet, e.g. things like sddm which should probably install themes to /etc (which they’re working on), so as often happens in linux, workarounds ensue. Making one directory mutable does not destroy all the benefits.


  • Yeah, I had that at the beginning, then added to my fstab

    #enable sddm and therefore good themes
    /var/sddm /usr/share/sddm none rbind 0 0
    
    

    and KDE themes with sddm components install fine now (most themes install fine into /home, does Gnome really not have per user themes?)

    Essentially you can tactically make things mutable as needed, use sparingly, but maybe not even trying lessens your opinion, no?






  • Also note that Thinkpads up to a couple of years ago (when soldering RAM became a thing) are mostly trivial to open and upgrade RAM / drives, so you don’t have to care about those and can pick up a bargain (look to T480 at the moment (not the TN screen tho), or whatever is 3 years or so old, as that’s the corporate fleets that are getting dumped onto the market).





  • Hopefully without adding too much confusion, using rpm-ostree to add systemwide new packages/applications is generally to be avoided, keep your main OS clean and stable (thankfully bazzite has done the heavy lifting here for you already for all the gaming stuff, codecs etc). General apps (office, media etc) are usually installed via flatpak (using kde discover or gnome software).

    If / when you want to explore the deeper (CLI / obscure things without flatpaks) Linux world open a terminal and enter

    distrobox-create --name fedora-mutable --image fedora:latest --home ~/fedora-mutable
    distrobox enter fedora-mutable
    

    You can now go ahead and use dnf, install whatever with no risk of breaking your main system. But wait, there’s more, ‘exit’ out of fedora-mutable, type

    distrobox-create --name arch --image archlinux:latest --home ~/arch
    distrobox enter arch
    

    You now have all the AUR (Arch User Repository) at your disposal, install practically any Linux program in existence, and use ‘distrobox export’ to put it in your main OS applications list. It’s pretty glorious. Remember to make homes for your distroboxes so they don’t pollute your main home.