Im giving a go fedora silverblue on a new laptop but Im unable to boot (and since im a linux noob the first thing i tried was installing it fresh again but that didnt resolve it).

its a single drive partitioned to ext4 and encrypted with luks (its basically the default config from the fedora installation)

any ideas for things to try?

  • Max-P@lemmy.max-p.me
    link
    fedilink
    arrow-up
    4
    ·
    1 month ago

    The error says /home is a symlink, what if you ls -l /home?

    Since this is an atomic distro, /home might be a symlink to /var/home.

    • evasync@lemmy.worldOP
      link
      fedilink
      arrow-up
      0
      ·
      1 month ago

      editing the /etc/fstab didnt work (I just changed the path but not sure if the uuid plays any part) but ill give the rm/mkdir part a go

        • evasync@lemmy.worldOP
          link
          fedilink
          arrow-up
          0
          ·
          1 month ago

          No but I rebooted the system after the change. do still need to update it regardless the reboot?

              • data1701d (He/Him)@startrek.website
                link
                fedilink
                English
                arrow-up
                1
                ·
                1 month ago

                You might be right. I was thinking of it in terms of a traditional distro, as I use vanilla Debian where my advice would apply and yours probably wouldn’t.

                From what I do know, though, I guess /etc would be part of the writable roots overlaid onto the immutable image, so it would make sense if the immutable image was sort of the initramfs and was read when root was mounted or something. Your command is probably the correct one for immutable systems.

                • nanook@friendica.eskimo.com
                  link
                  fedilink
                  arrow-up
                  1
                  ·
                  1 month ago

                  @data1701d It will work fine with Debian Bookworm, not sure about older releases, I don’t know at what point they switched to systemd controlling that but definitely does work in Bookworm. It should work in most other modern Debian or Ubuntu derived systems as well, but not older versions as systemd taking over this functionality is relatively recent.

    • Telorand@reddthat.com
      link
      fedilink
      arrow-up
      0
      ·
      1 month ago

      Don’t you have that backwards? This is an atomic distro, and you’d want to mkdir /var/home then symlink /home from that, no? Otherwise, you’ll wind up with a home directory that is immutable.

      • nanook@friendica.eskimo.com
        link
        fedilink
        arrow-up
        1
        ·
        1 month ago

        @Telorand I am not familiar with that distro, I am however familiar with how mount works. As far as what is immutable and what is not, you can set with chattr +i file/directory or chattr -i file/directory.

  • nanook@friendica.eskimo.com
    link
    fedilink
    arrow-up
    1
    ·
    1 month ago

    There well may be hardware issues, but with ext4 it rarely corrupts the entire file system. You might end up with some data not flushed so you’ll have some inodes that don’t point to anything that you’ll remove with fsck upon boot, but btrfs, I’ve had it corrupt and lose the entire file system. I’ve used ext2-through-ext4 for as long as they’ve existed and never lost a file system though back in the ext2 days I had to hand repair them a few times, but ext2 was sufficiently simple that that was not difficult, but within two weeks of turning up a btrfs file system it shit itself in ways I could not recover anything, the entire file system was lost. If I did not have backups, which of course I always do, I would have been completely fuxored. It is my opinion that btrfs and xfs, both of which have advantages, are also both not sufficiently stable for production use.

      • Possibly linux@lemmy.zip
        link
        fedilink
        English
        arrow-up
        1
        ·
        1 month ago

        Was that in the last 5 years? If it was btrfs is now far more stable. It has never blown up for me and it has in fact saved my data a few times.

            • dhhyfddehhfyy4673@fedia.io
              link
              fedilink
              arrow-up
              0
              ·
              1 month ago

              Seems like this can be prevented from reaching that point by properly deleting old generations regularly though right?

                • mvirts@lemmy.world
                  link
                  fedilink
                  arrow-up
                  0
                  ·
                  edit-2
                  1 month ago

                  20 or 30 generations 😹

                  I have space for 1 😭

                  Edit: you’ve got me worried now, is the behavior you’re referring to normal running out of inodes behavior or some sort of bug? Is this specific to ext4 or does it also affect btrfs nix stores?

                  I’ve run across the information that ext4 can be created with extra inodes but cannot add inodes to an existing filesystem.