Skip to main content
added 175 characters in body
Source Link
blnks
  • 219
  • 1
  • 7

I'm going to securely erase the data on a HDD so that I can donate it.

I use shred which is a specialized the tool for this puprose. So I run shred -vfz /dev/sdd1 and it does its job:

shred: /dev/sdd1: pass 1/4 (random)...
shred: /dev/sdd1: pass 1/4 (random)...652MiB/932GiB 0%
shred: /dev/sdd1: pass 1/4 (random)...1,2GiB/932GiB 0%
shred: /dev/sdd1: pass 1/4 (random)...1,8GiB/932GiB 0%
shred: /dev/sdd1: pass 1/4 (random)...2,5GiB/932GiB 0%

However it is painfully slow. After an hour or so, it still could not finish the first pass on a 1TB HDD. So I'm wondering what is the quicker way to do so without compromizing the security of data removal?

P.S. I know that it also can be done using:

dd if=/dev/urandom of=/dev/sdd1 bs=4k

But I'm wondering what will be the differnce in terms of security and speed.

I'm going to securely erase the data so I use shred which is a specialized the tool for this puprose. So I run shred -vfz /dev/sdd1 and it does its job:

shred: /dev/sdd1: pass 1/4 (random)...
shred: /dev/sdd1: pass 1/4 (random)...652MiB/932GiB 0%
shred: /dev/sdd1: pass 1/4 (random)...1,2GiB/932GiB 0%
shred: /dev/sdd1: pass 1/4 (random)...1,8GiB/932GiB 0%
shred: /dev/sdd1: pass 1/4 (random)...2,5GiB/932GiB 0%

However it is painfully slow. After an hour or so, it still could not finish the first pass on a 1TB HDD. So I'm wondering what is the quicker way to do so without compromizing the security of data removal?

I'm going to securely erase the data on a HDD so that I can donate it.

I use shred which is a specialized the tool for this puprose. So I run shred -vfz /dev/sdd1 and it does its job:

shred: /dev/sdd1: pass 1/4 (random)...
shred: /dev/sdd1: pass 1/4 (random)...652MiB/932GiB 0%
shred: /dev/sdd1: pass 1/4 (random)...1,2GiB/932GiB 0%
shred: /dev/sdd1: pass 1/4 (random)...1,8GiB/932GiB 0%
shred: /dev/sdd1: pass 1/4 (random)...2,5GiB/932GiB 0%

However it is painfully slow. After an hour or so, it still could not finish the first pass on a 1TB HDD. So I'm wondering what is the quicker way to do so without compromizing the security of data removal?

P.S. I know that it also can be done using:

dd if=/dev/urandom of=/dev/sdd1 bs=4k

But I'm wondering what will be the differnce in terms of security and speed.

Source Link
blnks
  • 219
  • 1
  • 7

How to quickly and securly erase data on a disk?

I'm going to securely erase the data so I use shred which is a specialized the tool for this puprose. So I run shred -vfz /dev/sdd1 and it does its job:

shred: /dev/sdd1: pass 1/4 (random)...
shred: /dev/sdd1: pass 1/4 (random)...652MiB/932GiB 0%
shred: /dev/sdd1: pass 1/4 (random)...1,2GiB/932GiB 0%
shred: /dev/sdd1: pass 1/4 (random)...1,8GiB/932GiB 0%
shred: /dev/sdd1: pass 1/4 (random)...2,5GiB/932GiB 0%

However it is painfully slow. After an hour or so, it still could not finish the first pass on a 1TB HDD. So I'm wondering what is the quicker way to do so without compromizing the security of data removal?