• kristoff
    link
    fedilink
    arrow-up
    2
    ·
    1 month ago

    Yes, that was indeed the question.

    If I read it correct, you need a specialised distro for this. You cannot do this on a off-the-shelf Debian or Ubuntu?

    I’ll do some searching on ‘unmutable Linux’. Thanks for the (very quick) answer! 😀

    • Unmapped@lemmy.ml
      link
      fedilink
      arrow-up
      2
      ·
      1 month ago

      There is a file system you can use. A alternative to ext4. I think its Btrfs. I never tried it. But it let’s you take snapshots that you can restore to. That’s not just system files but everything. And pretty sure you can use it with a disto like arch and Debian. I think that’s how snapshots work. But as I said I never actually tried it out.

      • kristoff
        link
        fedilink
        English
        arrow-up
        1
        ·
        1 month ago

        just watched some videos on btrfs. Looks interesting indeed. I will look into it and perhaps do a test-installation and see how it goes.

        Thanks for the info

    • tetris11@lemmy.ml
      link
      fedilink
      arrow-up
      1
      ·
      1 month ago

      I think the answers given here don’t quite fit the question.

      Android and Windows have dedicated recovery partitions sectioned off on the disk that the OS never boots to and does not interact with during normal system operation.

      If something goes wrong with the OS, then a signal is sent to the BIOS or other non-OS system to “hey, recover from this partition”.

      Btrfs, NixOS, Guix, and other immutable (file-)systems, implement this via having a file system hierarchy protected by various permissions and softlinks to create a checkpoint of sorts, which is managed by a dedicated service that runs with the OS during normal system operation.

      The drawback of these systems is that if something does go wrong with the OS, it cannot fallback to the BIOS to save it. The OS has to somehow signal to itself that it needs to restore from an earlier checkpoint.

      • kristoff
        link
        fedilink
        English
        arrow-up
        1
        ·
        1 month ago

        Just watched some videos on btrfs. I start to understand the conceps. Perhaps I should also look into how exactly

        On windows and the “recovery partion”. I guess what you say is that it should always be possiblity to boot in some kind of system, but it will not happen automatically as there is no way for a system to detect that the system completely hangs.

        Thinking about it. It kind of strange. Embedded systems have watchdog interrupts that get fired if the system hangs (i.e. if it does not provide a “yes, I still live” signal every “x” milliseconds). Does a PC not have something similar?

        • tetris11@lemmy.ml
          link
          fedilink
          arrow-up
          1
          ·
          1 month ago

          embedded systems have the advantage of all using a single bootloader: Uboot, so the error path is always known and the software knows how to fallback.

          With x86_64 systems it’s a mixed bag, and maybe the windows and linux bootloader knows what to do, but in most cases it will just signal an error and stop