See the Security and Bug Fixes Section - Grub EFI Install Updates Fix Sticky


Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to easilly lose a lot of data
#3
how to wipe data. Use at your own risk! no data recover service if misused/misunderstood commands lead to data loss
Code:
sudo dd if=/dev/zero (faster, less secure) or /dev/urandom (slow, more secure) of=/dev/sdx(y)

Examples:
Your internal hdd is sda and you want to wipe partition 1 select one of the commands.
Code:
sudo dd if=/dev/zero of=/dev/sda1
faster, secure enough for you
Code:
sudo dd if=/dev/urandom of=/dev/sda1
more secure, slow

Your internal flash drive is sdb and you want to wipe partition 7 select one of the commands.
Code:
sudo dd if=/dev/zero of=/dev/sdb7
faster, secure enough for you
Code:
sudo dd if=/dev/urandom of=/dev/sdb7
more secure, slow

Your SD card is sdc and you want to wipe whole SD card select one of the commands.
Code:
sudo dd if=/dev/zero of=/dev/sdc
faster, secure enough for you
Code:
sudo dd if=/dev/urandom of=/dev/sdc
more secure, slow

Keep in mind that wiping SSD, SD card, usb flash drives, usb SSD or any solid state media wears out after limited amount of program/erase cycles so don't wipe solid state media for fun.


Reply


Messages In This Thread
How to easilly lose a lot of data - by minesheep - 08-14-2019, 09:58 PM
Re: How to easilly lose a lot of data - by MS - 08-14-2019, 10:46 PM
Re: How to easilly lose a lot of data - by minesheep - 08-31-2019, 08:52 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)