Does running dd if=/dev/zero often can damage the drive?How to zero out a drive?Can I securely erase a hard...
Movie: boy escapes the real world and goes to a fantasy world with big furry trolls
Too soon for a plot twist?
How should I solve this integral with changing parameters?
Why does Central Limit Theorem break down in my simulation?
Which country has more?
Writing text next to a table
What is better: yes / no radio, or simple checkbox?
School performs periodic password audits. Is my password compromised?
Logistic regression BIC: what's the right N?
Do Paladin Auras of Differing Oaths Stack?
How can a demon take control of a human body during REM sleep?
Traveling to heavily polluted city, what practical measures can I take to minimize impact?
Why aren't there more Gauls like Obelix?
What is the purpose of a disclaimer like "this is not legal advice"?
What is the "determinant" of two vectors?
I reported the illegal activity of my boss to his boss. My boss found out. Now I am being punished. What should I do?
"If + would" conditional in present perfect tense
PTIJ: Who was the sixth set of priestly clothes for?
(Codewars) Linked Lists-Sorted Insert
Computation logic of Partway in TikZ
Having the player face themselves after the mid-game
If sound is a longitudinal wave, why can we hear it if our ears aren't aligned with the propagation direction?
Is it a Cyclops number? "Nobody" knows!
Short scifi story where reproductive organs are converted to produce "materials", pregnant protagonist is "found fit" to be a mother
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 yesterday
Ridgwell J.
New contributor
asked 2 days ago
Ridgwell J.Ridgwell J.
355
355
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.
yesterday
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.
yesterday
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.
yesterday
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 2 days ago
Lie RyanLie Ryan
4931516
4931516
FYI I used hdd—not ssd, so it is not affecting much right? Thanks for your answer :)
– Ridgwell J.
yesterday
add a comment |
FYI I used hdd—not ssd, so it is not affecting much right? Thanks for your answer :)
– Ridgwell J.
yesterday
FYI I used hdd—not ssd, so it is not affecting much right? Thanks for your answer :)
– Ridgwell J.
yesterday
FYI I used hdd—not ssd, so it is not affecting much right? Thanks for your answer :)
– Ridgwell J.
yesterday
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