Hi there, I’m on Bazzite KDE and recently somehow lost a my “gaming” folder…? No idea how but must gave been user faulty, e.g me. Therefore wondering if it’s possible to lock certain folders so that this cannot accidentally happen?

  • axzxc1236@lemm.ee
    link
    fedilink
    arrow-up
    23
    arrow-down
    1
    ·
    1 month ago

    sudo chattr +i (folder) prevents anything to modify/delete folders and files

    Add -R for setting the flag for all subdirectory/files

    • Sunny' 🌻OP
      link
      fedilink
      arrow-up
      5
      ·
      1 month ago

      Thanks I might try this! However does this allow for reads/writes from the system? Considering this is a folder for games, the files are constantly changing, such as the game save files etc…

      • DarthYoshiBoy@kbin.social
        link
        fedilink
        arrow-up
        6
        ·
        edit-2
        1 month ago

        If you’d like to look into it further. the +i flag in chattr is setting an attribute making the file (everything in Linux is a file, so yes this even means directories) immutable. When a file is immutable, it isn’t possible to change the ownership, group, name, or permissions of the file, nor will you be able to write, append, or truncate the file.

        It’s been a while since I’ve used it, but I don’t believe it’s possible to have an immutable directory where you can still modify the contents therein, but I may be misremembering that. It would seem unlikely since adding content to the directory should require that you modify the links for the directory, which shouldn’t be allowable with an immutable object?

        It’s possible that the +a chattr attribute may achieve what you’d prefer. I believe that flag will make it so that files (and again, everything in Linux is a file) can be created and modified, but never deleted. I’ve actually never used this one, but I can foresee how this still may not be ideal for your wishes since updates to games may expect to be able to delete old content which would be thwarted here. 🤷

        • lemmyvore@feddit.nl
          link
          fedilink
          English
          arrow-up
          3
          ·
          edit-2
          1 month ago

          I don’t believe it’s possible to have an immutable directory where you can still modify the contents

          Not directly under that directory, but you can modify directories under it. Attributes only apply to the directory’s own alocation table and child directories have their own tables.

          Also you can modify the content of the files in the directory. The attributes only refer to removing or adding files or other operations that modify the directory’s table.

          • DarthYoshiBoy@kbin.social
            link
            fedilink
            arrow-up
            2
            ·
            1 month ago

            Attributes only apply to the directory’s own allocation table and child directories have their own tables.

            Thanks. It has been a while, but I was fairly certain that this was the case, glad to have the confirmation. 👍

        • Sunny' 🌻OP
          link
          fedilink
          arrow-up
          1
          ·
          1 month ago

          Thanks for the explanation, I luckily solved this with just “basic” changes of permissions in dolphin actually haha, but defo good to know that chattr has these capabilities for future references. Appriciate it 🌻