You are Here:
Linux Lite 6.6 FINAL Released - Support for 22 Languages Added - See Release Announcement Section



How to easilly lose a lot of data

Author (Read 3202 times)

0 Members and 2 Guests are viewing this topic.

Re: How to easilly lose a lot of data
« Reply #4 on: September 01, 2019, 03:15:08 PM »
 

Sprintrdriver

  • Forum Regular
  • ***
  • 110
    Posts
  • Reputation: 6
  • Linux Lite on Dell Lattude D620
    • View Profile

  • CPU: Intel Core2 T5500

  • MEMORY: 3Gb

  • VIDEO CARD: Intel Mobile 945GM/GMS 943/940GML Express
Step 5: Just don't take backup. Sooner or later the disk will die.
Step 6: If using a rotating disk connected to a usb-sata adapter : Make the disk read or write something, lift the disk up with your hand and shake it like crazy maniak, maybe even knock it into the table (just don't hit the screen or the cup of coffe).
I won't let an old, but fully functional computer die just because some company tell me that they won't make no more security updates to their OS. Thanks Linux :)
 

Re: How to easilly lose a lot of data
« Reply #3 on: August 31, 2019, 04:52:31 PM »
 

minesheep

  • Forum Regular
  • ***
  • 140
    Posts
  • Reputation: 11
  • Linux Lite Member
    • View Profile

  • MEMORY: 4Gb

  • Kernel: 5.x
how to wipe data. Use at your own risk! no data recover service if misused/misunderstood commands lead to data loss
Code: [Select]
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: [Select]
sudo dd if=/dev/zero of=/dev/sda1 faster, secure enough for you
Code: [Select]
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: [Select]
sudo dd if=/dev/zero of=/dev/sdb7 faster, secure enough for you
Code: [Select]
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: [Select]
sudo dd if=/dev/zero of=/dev/sdc faster, secure enough for you
Code: [Select]
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.


 

Re: How to easilly lose a lot of data
« Reply #2 on: August 14, 2019, 06:46:13 PM »
 

MS

  • I come here a lot
  • *****
  • 301
    Posts
  • Reputation: 15
    • View Profile

  • Kernel: 4.x
Using scripts that deal with erasure of anything or using unspecified scripts made by unconfirmed authors.

There used to be this sneaky bash command, composed entirely of colons, semicolons, apostrophes and such. This command was equivalent to one of the black magic stuff you have mentioned in the point 2.

In case accidental deletion of something critical on the hard drive, I know the right drill is to immediately stop applying any further changes - in particular trying to solve the issue on own behalf, without required competence, that is - perhaps shut down the PC and contact data rescue centre of choice. Majority of time, even when gone from the hard drive, the deleted information is still stored in one of the 'memory boxes' on the hardware - only marked as 'overwritable' for potential next information coming in - therefore possible to be recovered. That is also why we do not want to introduce any further changes in such an errific situation, not to accidentally overwrite our vulnerable piece of data.

Unless you have Timeshift often making backup for you. Then you may try to recover the system image of certain step back in time. Just be sure your Timeshift maintenance is all-inclusive, which means, it saves everything, not just some portion of the system. Timeshift is probably one of the few pieces of software for the developers of which I could willingly donate to.

On the contrary, if we work with confidential information and want to - for example - give the computer to recycling, without risking the information being taken over by overly inquisitive parties having too much spare time on their hands, simply run a destructive disk check. It makes all the 'memory boxes' on the hard drive open and writes a pattern into each one of them, effectively turning everything into tabula rasa.
« Last Edit: August 14, 2019, 07:01:43 PM by MS »
 

How to easilly lose a lot of data
« Reply #1 on: August 14, 2019, 05:58:21 PM »
 

minesheep

  • Forum Regular
  • ***
  • 140
    Posts
  • Reputation: 11
  • Linux Lite Member
    • View Profile

  • MEMORY: 4Gb

  • Kernel: 5.x
I didn't lost anything just making fun list of ways to lose data and get rid of un necessary files (and any files of cource).
You can use this list to protect your data when you don't do these mistakes.
1. Simply press delete without knowing what are you are doing. "I just deleted ..."
2. Running destructive commands in terminal DO NOT try
Code: [Select]
sudo rm -rf / (deletes everything)
sudo dd if=/dev/zero of=/dev/sda (wipes hard disk)
DO NOT try these two commands second even destructive with live session
3. Use fake capasity usb storage https://www.instructables.com/id/Dont-fall-for-the-Flash-Drive-Scam!/
4. playing with liquids when using computer
 

 

-->
X Close Ad

Linux Lite 6.6 FINAL Released - Support for 22 Languages Added - See Release Announcement Section