Was trying to install guix on top of fedora silverblue. It’s kinda working, but not exactly stable…

  • samc@feddit.ukOP
    link
    fedilink
    English
    arrow-up
    16
    ·
    1 day ago

    Some updates after sleeping on it and trying some morning debugging:

    • It’s actually either service being enabled that prevents login
    • It’s a gnome-shell issue. Logging into a tty is fine, and shows that it’s gnome-shell crashing when trying to log-in normally

    Maybe it’s time to go back to debian…

  • theunknownmuncher@lemmy.world
    link
    fedilink
    arrow-up
    30
    arrow-down
    1
    ·
    2 days ago

    I just don’t get these for a bare metal system. Containers? Sounds great. Definitely on board. Bare metal? Debian, standard fedora, or gentoo is what makes sense to me

    • JasonDJ@lemmy.zip
      link
      fedilink
      arrow-up
      29
      arrow-down
      1
      ·
      edit-2
      2 days ago

      Workstation-as-code is pretty dope for enterprise…

      The idea of an immutable, idempotent, declarative workstation, from cradle to grave, tickles me pink.

      • superkret@feddit.org
        link
        fedilink
        arrow-up
        6
        arrow-down
        2
        ·
        1 day ago

        At that point, make it a thin client which boots from a network image and logs you into a terminal server.
        Then you have the hardware and software resources you need for your role wherever you are.

        • fishpen0@lemmy.world
          link
          fedilink
          arrow-up
          3
          ·
          edit-2
          1 day ago

          This sounds like a great idea until you have multiple physical sites and dhcp doesn’t span network segments. Or, even if you’re willing to deal with that, employees who work from home. Anything that solves for the second one is almost certainly more complicated than just using vms or containers on remote workstations or a configuration manager on the workstation os and not waste your time on the thin client part

  • chrash0@lemmy.world
    link
    fedilink
    arrow-up
    28
    ·
    2 days ago

    where i get into trouble is when i do a bunch of nixos-rebuild —switches between restarts and some state ends up hanging around, so next time i do a reboot that ephemeral state is gone and whoops no internet

    • Ooops@feddit.org
      link
      fedilink
      arrow-up
      20
      ·
      2 days ago

      In simplified terms:

      You are allowed to modify stuff but it is not actually changing the install as is.

      This is achieved by different techniques like file system overlays, containerisation, btrfs snapshots and so on.

      The idea is to replicate the classical behavior you know from embedded devices that have their core functionality in ROM with even firmware updates only overlayed or modern smartphones: You can modify your system but in the end there’s always the possibilty to “reset to factory settings” as in: the last known working configuration.

    • CeeBee_Eh@lemmy.world
      link
      fedilink
      arrow-up
      11
      ·
      edit-2
      2 days ago

      Kinda. Generally the user files (including custom installed applications) are on a rw partition. Whereas the system files (OS files, root folder, etc) are on a ro partition. When updates are applied to the core system they come as complete images. No compiling from source on the fly.

      The advantages to this is that it should be near impossible to break your system. If you need to roll back to a previous version the system just/downloads/mounts the previous image. There is less flexibility in terms of changing system files. But the idea with immutable distros is that you shouldn’t be modifying system files anyways, and there are different ways to accomplish things.

      A really good example is Android. Android (non-rooted) is kinda-sorta an immutable distro. Except it uses an A/B partition method, where the active system downloads and installs to the other partition, triggers a flag, then a reboot picks up the flag and boots from the newly installed partition. If anything goes wrong, another flag is triggered and it boots from the “good” partition.

      It’s not quite the same, but at a high-level it kinda is.

      Edit: article I found about it

      https://linuxblog.io/immutable-linux-distros-are-they-right-for-you-take-the-test/

    • Hawke@lemmy.world
      link
      fedilink
      arrow-up
      9
      ·
      2 days ago

      Yes, kind of.

      Someone might correct me if I’m wrong but it’s that, plus extra tooling to redirect the stuff that needs to be writable, plus more extra tooling to allow you to temporarily unlock the read-only parts in order to do system updates, plus a system updater that puts the whole system more-or-less under version control.