Does running dd if=/dev/zero often can damage the drive?How to zero out a drive?Can I securely erase a hard...
Why would the IRS ask for birth certificates or even audit a small tax return?
School performs periodic password audits. Is my password compromised?
Computing the volume of a simplex-like object with constraints
Has a sovereign Communist government ever run, and conceded loss, on a fair election?
Where is the fallacy here?
Is it a Cyclops number? "Nobody" knows!
What can I do if someone tampers with my SSH public key?
Iron deposits mined from under the city
Different Account page layouts, what are they?
Do natural melee weapons (from racial traits) trigger Improved Divine Smite?
The (Easy) Road to Code
An Undercover Army
Does the US political system, in principle, allow for a no-party system?
Is divide-by-zero a security vulnerability?
Are small insurances worth it
When to use the term transposed instead of modulation?
If nine coins are tossed, what is the probability that the number of heads is even?
Why are special aircraft used for the carriers in the United States Navy?
Can you run a ground wire from stove directly to ground pole in the ground
Is being socially reclusive okay for a graduate student?
How to write a chaotic neutral protagonist and prevent my readers from thinking they are evil?
Is this nominative case or accusative case?
Why aren't there more gauls like Obelix?
Did Amazon pay $0 in taxes last year?
Does running dd if=/dev/zero often can damage the drive?
How to zero out a drive?Can I securely erase a hard drive by running `wipe` against `/dev/sdb`?I can't format disk in USB floppy driveCan't recover formatted Ext4 partition file system. :( Suggestions?Can I dd if=/dev/sda to of=/dev/sdc3 (drive to partition)Extremely low HDD read/write speedNeed help migrating hard drive using UbuntuCan't mount hard drive; “an operation is already pending”Is it safe to do dd if=/dev/zero of=/dev/<destination partition>4TB HDD unable to mount anymore
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
New contributor
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
New contributor
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
New contributor
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
New contributor
New contributor
edited 2 hours ago
Ridgwell J.
New contributor
asked 3 hours ago
Ridgwell J.Ridgwell J.
63
63
New contributor
New contributor
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.
2 hours ago
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
});
}
});
Ridgwell J. is a new contributor. Be nice, and check out our Code of Conduct.
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.
2 hours ago
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.
2 hours ago
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 3 hours ago
Lie RyanLie Ryan
4691516
4691516
FYI I used hdd—not ssd, so it is not affecting much right? Thanks for your answer :)
– Ridgwell J.
2 hours ago
add a comment |
FYI I used hdd—not ssd, so it is not affecting much right? Thanks for your answer :)
– Ridgwell J.
2 hours ago
FYI I used hdd—not ssd, so it is not affecting much right? Thanks for your answer :)
– Ridgwell J.
2 hours ago
FYI I used hdd—not ssd, so it is not affecting much right? Thanks for your answer :)
– Ridgwell J.
2 hours ago
add a comment |
Ridgwell J. is a new contributor. Be nice, and check out our Code of Conduct.
Ridgwell J. is a new contributor. Be nice, and check out our Code of Conduct.
Ridgwell J. is a new contributor. Be nice, and check out our Code of Conduct.
Ridgwell J. is a new contributor. Be nice, and check out our Code of Conduct.
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