I am going to sell my notebook and want to erase my 256GB SDD before so that data cannot be restored under any circumstances.
Using tools like shred and dd I can do that with certain partitions which I am not currently running my OS from.
But since I only have one partition on my notebook, I am wondering how/which tool I can use to safely erase/overwrite the content?
lsblk
, you will see the layout for the storage devices. If your main storage device is something likenvme0n1p1
, then it's an NVMe storage device. If you see/dev/sda
, then it's using a SATA interface (even if it's in an m.2 slot). If you are using an NVMe disk, then you can (probably) wipe your disk in a half-second without killing it with a fullshred
ordd
sequence ... – matigo Jan 22 '22 at 14:05