1. Digital Remanence
    1. The remaining data on magnetic storage after deletion or erasure.
    2. Data sanitization tools correct this problem by completely removing data from devices, making them suitable for disposal or reuse.
  2. Data Types
    1. Data
      1. Data held within an object, file, or block
    2. Metadata
      1. Data describing an object, file, or data block
      2. Used by the system to manage and locate data
      3. Metadata is stored differently from data:
        1. On Linux, metadata is stored as inodes.
        2. On Windows, metadata is stored in a master file table.
  3. Data Deletion or Erasure
    1. When you delete a file, the operating system removes the inode or the table entry corresponding to that file.
  4. Disk Sanitization
    1. Data sanitization programs overwrite each disk location where the file's data was stored.
    2. This obliterates the information that was stored on disk so that it can't be reconstructed.
    3. You should always sanitize disks before disposing of them.
    4. Modern data sanitization algorithms have improved substantially, to the point that they can successfully sanitize disks in a single pass.
  5. Examples:
    1. Darik's Boot and Nuke (DBAN)
    2. CBL Data Shredder
    3. The format command with the write zero option