• TimeSquirrel@kbin.social
    link
    fedilink
    arrow-up
    17
    arrow-down
    1
    ·
    5 months ago

    So let’s stop calling it “deleted” then, and call it what it is. “Forgetting”.

    I’m not sure what you actually want the OS to do about it other than as I said, fill it with random data.

    • borari@lemmy.dbzer0.com
      link
      fedilink
      English
      arrow-up
      5
      ·
      edit-2
      5 months ago

      I think this is just semantics at this point, but to me there is a difference between “deleted” and “erased”. I see deleted as the typical “moved to trash” or rm action, with erased being overwritten bits, or like microwaving a drive.

      Edit - If i remember correctly deleting something in most OS’s/File Systems just deletes the pointer to that file on disk. The data just hangs out until new data is written to that sector. The solution, other than the one you mentioned about encrypting stored data and destroying the key when you want the data “deleted”, would be to only ever store data in volatile memory. That would make for a horrendous user experience though.

      • Hildegarde@lemmy.world
        link
        fedilink
        English
        arrow-up
        3
        ·
        5 months ago

        You can delete files by overwriting the data. On Linux its shred -zu [file]. Its slow but good to do if you are deleting sensitive data.

        Its good its not the standard delete function.