Could use your help recovering HFS+ external HDD that won't mount and has corrupted GPT table ...
Why do remote US companies require working in the US?
The exact meaning of 'Mom made me a sandwich'
TikZ: How to reverse arrow direction without switching start/end point?
Proper way to express "He disappeared them"
When you upcast Blindness/Deafness, do all targets suffer the same effect?
Bartok - Syncopation (1): Meaning of notes in between Grand Staff
Does Germany produce more waste than the US?
Are police here, aren't itthey?
Rotate a column
How many extra stops do monopods offer for tele photographs?
The past simple of "gaslight" – "gaslighted" or "gaslit"?
Axiom Schema vs Axiom
Is it convenient to ask the journal's editor for two additional days to complete a review?
How do I align (1) and (2)?
Why, when going from special to general relativity, do we just replace partial derivatives with covariant derivatives?
Method for adding error messages to a dictionary given a key
Why is information "lost" when it got into a black hole?
Is it okay to majorly distort historical facts while writing a fiction story?
Easy to read palindrome checker
Is it possible to replace duplicates of a character with one character using tr
Find non-case sensitive string in a mixed list of elements?
Make solar eclipses exceedingly rare, but still have new moons
Would a completely good Muggle be able to use a wand?
Why didn't Khan get resurrected in the Genesis Explosion?
Could use your help recovering HFS+ external HDD that won't mount and has corrupted GPT table
The Next CEO of Stack OverflowFixing corrupt backup GPT table?Unable to mount an LVM Hard-drive after upgradeRaid Issues Cannot Boot and Getting Superblock ErrorsMounted External Drive Doesn't Show Correct SizeCannot mount storage volumeRecover Deleted MongoDB DatabaseExternal HDD not mountingHow to install grub after fatal error on failed RAID system?8TB Hard Disk mount failedRecovery GPT after shrinking partition with sfdiskBroken NAS with 2 1 TB SATA drives
I'm attempting to mount an Apple HFS/HFS+ formatted external HDD on my Ubuntu 18. box.The reason I'm attempting this is that my Mac wants to try to initialize the drive as though its blank. Attempts at using DiskUtility failed (cannot repair or verify). I am now running into a host of issues try to mount under linux. What I've tried:
sudo apt-get install hfsprogs -y
sudo mkdir /media/exthdd
sudo mount -t hfsplus -o force,rw /dev/sdb2 /media/exthdd
The above resulted in an error when trying to mount:
mount: /mnt: wrong fs type, bad option, bad superblock on /dev/sdb, missing codepage or helper program, or other error.
When I attempted this:
sudo fsck.hfsplus /dev/sdb
I got that following:
Can't stat /dev/sdb1
Can't stat /dev/sdb1: No such file or directory
Here is the error and info I found using fdisk
sudo fdisk -l
GPT PMBR size mismatch (4294967294 != 7814037164) will be corrected by w(rite).
The primary GPT table is corrupt, but the backup appears OK, so that will be used.
Disk /dev/sdb: 3.7 TiB, 4000787028480 bytes, 7814037165 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: gpt
Disk identifier: 0CC734C1-E271-4E6B-9B75-A18C548BCDB5
Device Start End Sectors Size Type
/dev/sdb1 40 409639 409600 200M EFI System
/dev/sdb2 409640 7813774983 7813365344 3.7T Apple HFS/HFS+
I could really use someone's help as I very much want to recover the data. I don't know what else to try. Thank you in advance.
mount data-recovery
add a comment |
I'm attempting to mount an Apple HFS/HFS+ formatted external HDD on my Ubuntu 18. box.The reason I'm attempting this is that my Mac wants to try to initialize the drive as though its blank. Attempts at using DiskUtility failed (cannot repair or verify). I am now running into a host of issues try to mount under linux. What I've tried:
sudo apt-get install hfsprogs -y
sudo mkdir /media/exthdd
sudo mount -t hfsplus -o force,rw /dev/sdb2 /media/exthdd
The above resulted in an error when trying to mount:
mount: /mnt: wrong fs type, bad option, bad superblock on /dev/sdb, missing codepage or helper program, or other error.
When I attempted this:
sudo fsck.hfsplus /dev/sdb
I got that following:
Can't stat /dev/sdb1
Can't stat /dev/sdb1: No such file or directory
Here is the error and info I found using fdisk
sudo fdisk -l
GPT PMBR size mismatch (4294967294 != 7814037164) will be corrected by w(rite).
The primary GPT table is corrupt, but the backup appears OK, so that will be used.
Disk /dev/sdb: 3.7 TiB, 4000787028480 bytes, 7814037165 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: gpt
Disk identifier: 0CC734C1-E271-4E6B-9B75-A18C548BCDB5
Device Start End Sectors Size Type
/dev/sdb1 40 409639 409600 200M EFI System
/dev/sdb2 409640 7813774983 7813365344 3.7T Apple HFS/HFS+
I could really use someone's help as I very much want to recover the data. I don't know what else to try. Thank you in advance.
mount data-recovery
Possible duplicate of Fixing corrupt backup GPT table?
– Emmet
3 mins ago
add a comment |
I'm attempting to mount an Apple HFS/HFS+ formatted external HDD on my Ubuntu 18. box.The reason I'm attempting this is that my Mac wants to try to initialize the drive as though its blank. Attempts at using DiskUtility failed (cannot repair or verify). I am now running into a host of issues try to mount under linux. What I've tried:
sudo apt-get install hfsprogs -y
sudo mkdir /media/exthdd
sudo mount -t hfsplus -o force,rw /dev/sdb2 /media/exthdd
The above resulted in an error when trying to mount:
mount: /mnt: wrong fs type, bad option, bad superblock on /dev/sdb, missing codepage or helper program, or other error.
When I attempted this:
sudo fsck.hfsplus /dev/sdb
I got that following:
Can't stat /dev/sdb1
Can't stat /dev/sdb1: No such file or directory
Here is the error and info I found using fdisk
sudo fdisk -l
GPT PMBR size mismatch (4294967294 != 7814037164) will be corrected by w(rite).
The primary GPT table is corrupt, but the backup appears OK, so that will be used.
Disk /dev/sdb: 3.7 TiB, 4000787028480 bytes, 7814037165 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: gpt
Disk identifier: 0CC734C1-E271-4E6B-9B75-A18C548BCDB5
Device Start End Sectors Size Type
/dev/sdb1 40 409639 409600 200M EFI System
/dev/sdb2 409640 7813774983 7813365344 3.7T Apple HFS/HFS+
I could really use someone's help as I very much want to recover the data. I don't know what else to try. Thank you in advance.
mount data-recovery
I'm attempting to mount an Apple HFS/HFS+ formatted external HDD on my Ubuntu 18. box.The reason I'm attempting this is that my Mac wants to try to initialize the drive as though its blank. Attempts at using DiskUtility failed (cannot repair or verify). I am now running into a host of issues try to mount under linux. What I've tried:
sudo apt-get install hfsprogs -y
sudo mkdir /media/exthdd
sudo mount -t hfsplus -o force,rw /dev/sdb2 /media/exthdd
The above resulted in an error when trying to mount:
mount: /mnt: wrong fs type, bad option, bad superblock on /dev/sdb, missing codepage or helper program, or other error.
When I attempted this:
sudo fsck.hfsplus /dev/sdb
I got that following:
Can't stat /dev/sdb1
Can't stat /dev/sdb1: No such file or directory
Here is the error and info I found using fdisk
sudo fdisk -l
GPT PMBR size mismatch (4294967294 != 7814037164) will be corrected by w(rite).
The primary GPT table is corrupt, but the backup appears OK, so that will be used.
Disk /dev/sdb: 3.7 TiB, 4000787028480 bytes, 7814037165 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: gpt
Disk identifier: 0CC734C1-E271-4E6B-9B75-A18C548BCDB5
Device Start End Sectors Size Type
/dev/sdb1 40 409639 409600 200M EFI System
/dev/sdb2 409640 7813774983 7813365344 3.7T Apple HFS/HFS+
I could really use someone's help as I very much want to recover the data. I don't know what else to try. Thank you in advance.
mount data-recovery
mount data-recovery
asked 12 mins ago
vsiegevsiege
12
12
Possible duplicate of Fixing corrupt backup GPT table?
– Emmet
3 mins ago
add a comment |
Possible duplicate of Fixing corrupt backup GPT table?
– Emmet
3 mins ago
Possible duplicate of Fixing corrupt backup GPT table?
– Emmet
3 mins ago
Possible duplicate of Fixing corrupt backup GPT table?
– Emmet
3 mins ago
add a comment |
0
active
oldest
votes
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%2f1130061%2fcould-use-your-help-recovering-hfs-external-hdd-that-wont-mount-and-has-corrup%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
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%2f1130061%2fcould-use-your-help-recovering-hfs-external-hdd-that-wont-mount-and-has-corrup%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
Possible duplicate of Fixing corrupt backup GPT table?
– Emmet
3 mins ago