Does running dd if=/dev/zero often can damage the drive?

Clash Royale CLAN TAG#URR8PPP
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
Sometimes I zeroed my HDD once a month, using dd if=/dev/zero of=/dev/sda command, and start over again.
Don't worry, I've always backup my file onto external drive, so it's not a problem.
I often see advise to not format regularly because it will damaged the drive, I used dd if=/dev/zero command which I assume a low level format?
Does zeroing drive with dd count as low level format, more importantly Is it safe to zero a HDD regularly?
hard-drive format dd
add a comment |
Sometimes I zeroed my HDD once a month, using dd if=/dev/zero of=/dev/sda command, and start over again.
Don't worry, I've always backup my file onto external drive, so it's not a problem.
I often see advise to not format regularly because it will damaged the drive, I used dd if=/dev/zero command which I assume a low level format?
Does zeroing drive with dd count as low level format, more importantly Is it safe to zero a HDD regularly?
hard-drive format dd
add a comment |
Sometimes I zeroed my HDD once a month, using dd if=/dev/zero of=/dev/sda command, and start over again.
Don't worry, I've always backup my file onto external drive, so it's not a problem.
I often see advise to not format regularly because it will damaged the drive, I used dd if=/dev/zero command which I assume a low level format?
Does zeroing drive with dd count as low level format, more importantly Is it safe to zero a HDD regularly?
hard-drive format dd
Sometimes I zeroed my HDD once a month, using dd if=/dev/zero of=/dev/sda command, and start over again.
Don't worry, I've always backup my file onto external drive, so it's not a problem.
I often see advise to not format regularly because it will damaged the drive, I used dd if=/dev/zero command which I assume a low level format?
Does zeroing drive with dd count as low level format, more importantly Is it safe to zero a HDD regularly?
hard-drive format dd
hard-drive format dd
edited Mar 8 at 6:14
Ridgwell J.
asked Mar 8 at 4:44
Ridgwell J.Ridgwell J.
505
505
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
dd is not a low level format, it's just writing all zeroes to the entire disk. A low level format would be like running ATA Secure Erase. Additionally, there are also an even lower level format to modify the sector/cylinder definitions that you really don't want to go to.
Running dd on entire disk shouldn't damage the drive. It would increase the wear and tear since HDD contains moving parts, but modern HDD are pretty long lived that this shouldn't really matter in practice.
If by "hard drive" you actually mean SSD though, do note that SSD suffers from wear and tear much more than HDD. The SSD memory cells will wear out faster if you do lots of writes. Additionally, writing to entire SSD is essentially pointless in SSD due to wear leveling. I'd recommend using full disk encryption if you're using SSD, and to format you can simply discard your decryption key. ATA Secure Erase on SSD usually is implemented with encryption this way.
FYI I used hdd—not ssd, so it is not affecting much right? Thanks for your answer :)
– Ridgwell J.
Mar 8 at 6:16
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "89"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1123954%2fdoes-running-dd-if-dev-zero-often-can-damage-the-drive%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
dd is not a low level format, it's just writing all zeroes to the entire disk. A low level format would be like running ATA Secure Erase. Additionally, there are also an even lower level format to modify the sector/cylinder definitions that you really don't want to go to.
Running dd on entire disk shouldn't damage the drive. It would increase the wear and tear since HDD contains moving parts, but modern HDD are pretty long lived that this shouldn't really matter in practice.
If by "hard drive" you actually mean SSD though, do note that SSD suffers from wear and tear much more than HDD. The SSD memory cells will wear out faster if you do lots of writes. Additionally, writing to entire SSD is essentially pointless in SSD due to wear leveling. I'd recommend using full disk encryption if you're using SSD, and to format you can simply discard your decryption key. ATA Secure Erase on SSD usually is implemented with encryption this way.
FYI I used hdd—not ssd, so it is not affecting much right? Thanks for your answer :)
– Ridgwell J.
Mar 8 at 6:16
add a comment |
dd is not a low level format, it's just writing all zeroes to the entire disk. A low level format would be like running ATA Secure Erase. Additionally, there are also an even lower level format to modify the sector/cylinder definitions that you really don't want to go to.
Running dd on entire disk shouldn't damage the drive. It would increase the wear and tear since HDD contains moving parts, but modern HDD are pretty long lived that this shouldn't really matter in practice.
If by "hard drive" you actually mean SSD though, do note that SSD suffers from wear and tear much more than HDD. The SSD memory cells will wear out faster if you do lots of writes. Additionally, writing to entire SSD is essentially pointless in SSD due to wear leveling. I'd recommend using full disk encryption if you're using SSD, and to format you can simply discard your decryption key. ATA Secure Erase on SSD usually is implemented with encryption this way.
FYI I used hdd—not ssd, so it is not affecting much right? Thanks for your answer :)
– Ridgwell J.
Mar 8 at 6:16
add a comment |
dd is not a low level format, it's just writing all zeroes to the entire disk. A low level format would be like running ATA Secure Erase. Additionally, there are also an even lower level format to modify the sector/cylinder definitions that you really don't want to go to.
Running dd on entire disk shouldn't damage the drive. It would increase the wear and tear since HDD contains moving parts, but modern HDD are pretty long lived that this shouldn't really matter in practice.
If by "hard drive" you actually mean SSD though, do note that SSD suffers from wear and tear much more than HDD. The SSD memory cells will wear out faster if you do lots of writes. Additionally, writing to entire SSD is essentially pointless in SSD due to wear leveling. I'd recommend using full disk encryption if you're using SSD, and to format you can simply discard your decryption key. ATA Secure Erase on SSD usually is implemented with encryption this way.
dd is not a low level format, it's just writing all zeroes to the entire disk. A low level format would be like running ATA Secure Erase. Additionally, there are also an even lower level format to modify the sector/cylinder definitions that you really don't want to go to.
Running dd on entire disk shouldn't damage the drive. It would increase the wear and tear since HDD contains moving parts, but modern HDD are pretty long lived that this shouldn't really matter in practice.
If by "hard drive" you actually mean SSD though, do note that SSD suffers from wear and tear much more than HDD. The SSD memory cells will wear out faster if you do lots of writes. Additionally, writing to entire SSD is essentially pointless in SSD due to wear leveling. I'd recommend using full disk encryption if you're using SSD, and to format you can simply discard your decryption key. ATA Secure Erase on SSD usually is implemented with encryption this way.
answered Mar 8 at 5:04
Lie RyanLie Ryan
4931516
4931516
FYI I used hdd—not ssd, so it is not affecting much right? Thanks for your answer :)
– Ridgwell J.
Mar 8 at 6:16
add a comment |
FYI I used hdd—not ssd, so it is not affecting much right? Thanks for your answer :)
– Ridgwell J.
Mar 8 at 6:16
FYI I used hdd—not ssd, so it is not affecting much right? Thanks for your answer :)
– Ridgwell J.
Mar 8 at 6:16
FYI I used hdd—not ssd, so it is not affecting much right? Thanks for your answer :)
– Ridgwell J.
Mar 8 at 6:16
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1123954%2fdoes-running-dd-if-dev-zero-often-can-damage-the-drive%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown