How to verify Integrity of ISO file with these constraints?
I have a Windows 7 Desktop PC. My secondary HDD (SATA Internal) has developed a few bad sectors. Now its state is being reported as Caution in CrystalDiskInfo tool. I have already taken backup of my important data onto other storage devices like my SSD & Pen Drives.
One partition holds various ISO files. These files are nothing but ISO images of my various personal DVDs as a backup. Some DVDs were quite old and are already trashed because eventually later they were no longer getting detected.
It’s possible that bad sectors might have developed on the partition where these ISOs are stored.
Now how do I verify the integrity of those ISO files?
Is just successful opening of the file with 7zip or PowerISO enough or do I need to do something else?
I did not maintain any MD5 or SHA hash of the ISO files after creating them. May be I should have, but it did not strike me back then.
windows-7 iso-image data-integrity
add a comment |
I have a Windows 7 Desktop PC. My secondary HDD (SATA Internal) has developed a few bad sectors. Now its state is being reported as Caution in CrystalDiskInfo tool. I have already taken backup of my important data onto other storage devices like my SSD & Pen Drives.
One partition holds various ISO files. These files are nothing but ISO images of my various personal DVDs as a backup. Some DVDs were quite old and are already trashed because eventually later they were no longer getting detected.
It’s possible that bad sectors might have developed on the partition where these ISOs are stored.
Now how do I verify the integrity of those ISO files?
Is just successful opening of the file with 7zip or PowerISO enough or do I need to do something else?
I did not maintain any MD5 or SHA hash of the ISO files after creating them. May be I should have, but it did not strike me back then.
windows-7 iso-image data-integrity
add a comment |
I have a Windows 7 Desktop PC. My secondary HDD (SATA Internal) has developed a few bad sectors. Now its state is being reported as Caution in CrystalDiskInfo tool. I have already taken backup of my important data onto other storage devices like my SSD & Pen Drives.
One partition holds various ISO files. These files are nothing but ISO images of my various personal DVDs as a backup. Some DVDs were quite old and are already trashed because eventually later they were no longer getting detected.
It’s possible that bad sectors might have developed on the partition where these ISOs are stored.
Now how do I verify the integrity of those ISO files?
Is just successful opening of the file with 7zip or PowerISO enough or do I need to do something else?
I did not maintain any MD5 or SHA hash of the ISO files after creating them. May be I should have, but it did not strike me back then.
windows-7 iso-image data-integrity
I have a Windows 7 Desktop PC. My secondary HDD (SATA Internal) has developed a few bad sectors. Now its state is being reported as Caution in CrystalDiskInfo tool. I have already taken backup of my important data onto other storage devices like my SSD & Pen Drives.
One partition holds various ISO files. These files are nothing but ISO images of my various personal DVDs as a backup. Some DVDs were quite old and are already trashed because eventually later they were no longer getting detected.
It’s possible that bad sectors might have developed on the partition where these ISOs are stored.
Now how do I verify the integrity of those ISO files?
Is just successful opening of the file with 7zip or PowerISO enough or do I need to do something else?
I did not maintain any MD5 or SHA hash of the ISO files after creating them. May be I should have, but it did not strike me back then.
windows-7 iso-image data-integrity
windows-7 iso-image data-integrity
asked Jan 13 at 13:11
rajeevrajeev
496624
496624
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
ISO images are basically raw disk images. There is no way to check their integrity, because the ISO-9660 filesystem does not offer any data integrity verification. Indeed, most filesystems of old don’t have data integrity checks. You can only verify the filesystem itself is still intact.
So basically you could do a 2-step check:
- Verify the ISO-9660 filesystem
- Unpack/mount the image and check the files contained within, if possible
As you allude to without a checksum there is no way to check the integrity of an ISO.
– Ramhound
Jan 13 at 15:45
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
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%2fsuperuser.com%2fquestions%2f1393764%2fhow-to-verify-integrity-of-iso-file-with-these-constraints%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
ISO images are basically raw disk images. There is no way to check their integrity, because the ISO-9660 filesystem does not offer any data integrity verification. Indeed, most filesystems of old don’t have data integrity checks. You can only verify the filesystem itself is still intact.
So basically you could do a 2-step check:
- Verify the ISO-9660 filesystem
- Unpack/mount the image and check the files contained within, if possible
As you allude to without a checksum there is no way to check the integrity of an ISO.
– Ramhound
Jan 13 at 15:45
add a comment |
ISO images are basically raw disk images. There is no way to check their integrity, because the ISO-9660 filesystem does not offer any data integrity verification. Indeed, most filesystems of old don’t have data integrity checks. You can only verify the filesystem itself is still intact.
So basically you could do a 2-step check:
- Verify the ISO-9660 filesystem
- Unpack/mount the image and check the files contained within, if possible
As you allude to without a checksum there is no way to check the integrity of an ISO.
– Ramhound
Jan 13 at 15:45
add a comment |
ISO images are basically raw disk images. There is no way to check their integrity, because the ISO-9660 filesystem does not offer any data integrity verification. Indeed, most filesystems of old don’t have data integrity checks. You can only verify the filesystem itself is still intact.
So basically you could do a 2-step check:
- Verify the ISO-9660 filesystem
- Unpack/mount the image and check the files contained within, if possible
ISO images are basically raw disk images. There is no way to check their integrity, because the ISO-9660 filesystem does not offer any data integrity verification. Indeed, most filesystems of old don’t have data integrity checks. You can only verify the filesystem itself is still intact.
So basically you could do a 2-step check:
- Verify the ISO-9660 filesystem
- Unpack/mount the image and check the files contained within, if possible
answered Jan 13 at 14:50
Daniel BDaniel B
33.8k76387
33.8k76387
As you allude to without a checksum there is no way to check the integrity of an ISO.
– Ramhound
Jan 13 at 15:45
add a comment |
As you allude to without a checksum there is no way to check the integrity of an ISO.
– Ramhound
Jan 13 at 15:45
As you allude to without a checksum there is no way to check the integrity of an ISO.
– Ramhound
Jan 13 at 15:45
As you allude to without a checksum there is no way to check the integrity of an ISO.
– Ramhound
Jan 13 at 15:45
add a comment |
Thanks for contributing an answer to Super User!
- 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%2fsuperuser.com%2fquestions%2f1393764%2fhow-to-verify-integrity-of-iso-file-with-these-constraints%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