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

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








2















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?










share|improve this question






























    2















    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?










    share|improve this question


























      2












      2








      2








      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?










      share|improve this question
















      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






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 8 at 6:14







      Ridgwell J.

















      asked Mar 8 at 4:44









      Ridgwell J.Ridgwell J.

      505




      505




















          1 Answer
          1






          active

          oldest

          votes


















          4














          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.






          share|improve this answer























          • FYI I used hdd—not ssd, so it is not affecting much right? Thanks for your answer :)

            – Ridgwell J.
            Mar 8 at 6:16











          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
          );



          );













          draft saved

          draft discarded


















          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









          4














          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.






          share|improve this answer























          • FYI I used hdd—not ssd, so it is not affecting much right? Thanks for your answer :)

            – Ridgwell J.
            Mar 8 at 6:16















          4














          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.






          share|improve this answer























          • FYI I used hdd—not ssd, so it is not affecting much right? Thanks for your answer :)

            – Ridgwell J.
            Mar 8 at 6:16













          4












          4








          4







          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.






          share|improve this answer













          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.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          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

















          • 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

















          draft saved

          draft discarded
















































          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.




          draft saved


          draft discarded














          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





















































          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






          Popular posts from this blog

          Peggy Mitchell

          Palaiologos

          The Forum (Inglewood, California)