• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

How long to zero a 2TB drive w/ dd over USB?

I'm RMA'ing a WD20EARS drive that failed WD's drive diagnostic tool due to too many bad sectors. I decided to zero out the drive with dd before sending it in. It's been running for almost 34 hours now.

I used the command: dd if=/dev/zero of=/dev/sdb bs=1M

I figured it would take about a day, but apparently it's a lot longer than that.

Is there any way to poll the program to see it's progress? Or do I just gotta wait it out?
 
did you ever answer this ?

Newer versions of dd (Ubuntu 16 and later, among others) have a show-progress feature built in.

If you want to do it the old fashioned way, use either pv or the kill -USR1 command, as outlined here:

 
Back
Top