Mount .img created by ddrescue-gui
I'm trying to recover data after formatting my hdd. I installed ddrescue-gui and performed the following tasks:
- Select source (formatted hdd), no log, destination (img file inside separate hdd) and set to fastest recovery then click start

- Went into Computer and found that the source drive was now unmounted. So I went into Disks to see if I could mount it, but could not because it was now two loop devices:

So I tried various terminal commands to no avail, getting errors such as:
sudo mount -t ntfs "/media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img" /dev/loop0
NTFS signature is missing.
Failed to mount '/dev/loop2': Invalid argument
The device '/dev/loop2' doesn't seem to have a valid NTFS.
Maybe the wrong device is used? Or the whole disk instead of a
partition (e.g. /dev/sda, not /dev/sda1)? Or the other way around?
The file is currently sitting on a separate hdd and the 1tb hdd I'm trying to recover is inaccessible:

I'm new to this whole scene so I'm really confused at the moment. No idea why my drive got unmounted, converted to a "loop device" (whatever that is) and why I can't just get my data and then mount my device again. Is there a correct way of going about this?
I checked the official Launchpad GUI site but I didn't find any tutorials or guides or anything useful.
linux linux-mint mount images ddrescue
bumped to the homepage by Community♦ 7 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I'm trying to recover data after formatting my hdd. I installed ddrescue-gui and performed the following tasks:
- Select source (formatted hdd), no log, destination (img file inside separate hdd) and set to fastest recovery then click start

- Went into Computer and found that the source drive was now unmounted. So I went into Disks to see if I could mount it, but could not because it was now two loop devices:

So I tried various terminal commands to no avail, getting errors such as:
sudo mount -t ntfs "/media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img" /dev/loop0
NTFS signature is missing.
Failed to mount '/dev/loop2': Invalid argument
The device '/dev/loop2' doesn't seem to have a valid NTFS.
Maybe the wrong device is used? Or the whole disk instead of a
partition (e.g. /dev/sda, not /dev/sda1)? Or the other way around?
The file is currently sitting on a separate hdd and the 1tb hdd I'm trying to recover is inaccessible:

I'm new to this whole scene so I'm really confused at the moment. No idea why my drive got unmounted, converted to a "loop device" (whatever that is) and why I can't just get my data and then mount my device again. Is there a correct way of going about this?
I checked the official Launchpad GUI site but I didn't find any tutorials or guides or anything useful.
linux linux-mint mount images ddrescue
bumped to the homepage by Community♦ 7 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I'm trying to recover data after formatting my hdd. I installed ddrescue-gui and performed the following tasks:
- Select source (formatted hdd), no log, destination (img file inside separate hdd) and set to fastest recovery then click start

- Went into Computer and found that the source drive was now unmounted. So I went into Disks to see if I could mount it, but could not because it was now two loop devices:

So I tried various terminal commands to no avail, getting errors such as:
sudo mount -t ntfs "/media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img" /dev/loop0
NTFS signature is missing.
Failed to mount '/dev/loop2': Invalid argument
The device '/dev/loop2' doesn't seem to have a valid NTFS.
Maybe the wrong device is used? Or the whole disk instead of a
partition (e.g. /dev/sda, not /dev/sda1)? Or the other way around?
The file is currently sitting on a separate hdd and the 1tb hdd I'm trying to recover is inaccessible:

I'm new to this whole scene so I'm really confused at the moment. No idea why my drive got unmounted, converted to a "loop device" (whatever that is) and why I can't just get my data and then mount my device again. Is there a correct way of going about this?
I checked the official Launchpad GUI site but I didn't find any tutorials or guides or anything useful.
linux linux-mint mount images ddrescue
I'm trying to recover data after formatting my hdd. I installed ddrescue-gui and performed the following tasks:
- Select source (formatted hdd), no log, destination (img file inside separate hdd) and set to fastest recovery then click start

- Went into Computer and found that the source drive was now unmounted. So I went into Disks to see if I could mount it, but could not because it was now two loop devices:

So I tried various terminal commands to no avail, getting errors such as:
sudo mount -t ntfs "/media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img" /dev/loop0
NTFS signature is missing.
Failed to mount '/dev/loop2': Invalid argument
The device '/dev/loop2' doesn't seem to have a valid NTFS.
Maybe the wrong device is used? Or the whole disk instead of a
partition (e.g. /dev/sda, not /dev/sda1)? Or the other way around?
The file is currently sitting on a separate hdd and the 1tb hdd I'm trying to recover is inaccessible:

I'm new to this whole scene so I'm really confused at the moment. No idea why my drive got unmounted, converted to a "loop device" (whatever that is) and why I can't just get my data and then mount my device again. Is there a correct way of going about this?
I checked the official Launchpad GUI site but I didn't find any tutorials or guides or anything useful.
linux linux-mint mount images ddrescue
linux linux-mint mount images ddrescue
asked Feb 15 '16 at 11:23
HooliHooli
1013
1013
bumped to the homepage by Community♦ 7 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 7 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You have a image of a filesystem (1tb.img) inside a filesystem (/dev/sdf of /media/user/e...aa5).
try
sudo mount "/media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img" /mnt
or
sudo mount -o loop "/media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img" /mnt
- mount should find filesystem type.
- add
-rafter mount to mount your image read only.
EDIT:
- use
/mnt(not/media/user/XXYY) as mount point. sudo mount -o ro,loop -t ntfs /media/user/e3../1tb.img /mnt
try fstyp (or fstype) to check which filesystem
fstype /media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img
analyse file using ...
file
file /media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img
both commands:sudo mount "/media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img" "/media/user/B5C4-62C3"orsudo mount -o loop "/media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img" "/media/user/B5C4-62C3"result:mount: block device /media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img is write-protected, mounting read-only mount: you must specify the filesystem typewith-r:mount: you must specify the filesystem typewith-t ntfs:NTFS signature is missing. Failed to mount '/dev/loop2': Invalid argument The device '/dev/loop2' doesn't seem to have a...
– Hooli
Feb 15 '16 at 13:35
@Hooli see my edit
– Archemar
Feb 15 '16 at 16:18
for #1 and #2 I get the same errors mentioned above, for #3 I getfstype: command not found, for #4 I get/media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img: x86 boot sector
– Hooli
Feb 15 '16 at 16:20
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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%2funix.stackexchange.com%2fquestions%2f263365%2fmount-img-created-by-ddrescue-gui%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
You have a image of a filesystem (1tb.img) inside a filesystem (/dev/sdf of /media/user/e...aa5).
try
sudo mount "/media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img" /mnt
or
sudo mount -o loop "/media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img" /mnt
- mount should find filesystem type.
- add
-rafter mount to mount your image read only.
EDIT:
- use
/mnt(not/media/user/XXYY) as mount point. sudo mount -o ro,loop -t ntfs /media/user/e3../1tb.img /mnt
try fstyp (or fstype) to check which filesystem
fstype /media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img
analyse file using ...
file
file /media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img
both commands:sudo mount "/media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img" "/media/user/B5C4-62C3"orsudo mount -o loop "/media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img" "/media/user/B5C4-62C3"result:mount: block device /media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img is write-protected, mounting read-only mount: you must specify the filesystem typewith-r:mount: you must specify the filesystem typewith-t ntfs:NTFS signature is missing. Failed to mount '/dev/loop2': Invalid argument The device '/dev/loop2' doesn't seem to have a...
– Hooli
Feb 15 '16 at 13:35
@Hooli see my edit
– Archemar
Feb 15 '16 at 16:18
for #1 and #2 I get the same errors mentioned above, for #3 I getfstype: command not found, for #4 I get/media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img: x86 boot sector
– Hooli
Feb 15 '16 at 16:20
add a comment |
You have a image of a filesystem (1tb.img) inside a filesystem (/dev/sdf of /media/user/e...aa5).
try
sudo mount "/media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img" /mnt
or
sudo mount -o loop "/media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img" /mnt
- mount should find filesystem type.
- add
-rafter mount to mount your image read only.
EDIT:
- use
/mnt(not/media/user/XXYY) as mount point. sudo mount -o ro,loop -t ntfs /media/user/e3../1tb.img /mnt
try fstyp (or fstype) to check which filesystem
fstype /media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img
analyse file using ...
file
file /media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img
both commands:sudo mount "/media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img" "/media/user/B5C4-62C3"orsudo mount -o loop "/media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img" "/media/user/B5C4-62C3"result:mount: block device /media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img is write-protected, mounting read-only mount: you must specify the filesystem typewith-r:mount: you must specify the filesystem typewith-t ntfs:NTFS signature is missing. Failed to mount '/dev/loop2': Invalid argument The device '/dev/loop2' doesn't seem to have a...
– Hooli
Feb 15 '16 at 13:35
@Hooli see my edit
– Archemar
Feb 15 '16 at 16:18
for #1 and #2 I get the same errors mentioned above, for #3 I getfstype: command not found, for #4 I get/media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img: x86 boot sector
– Hooli
Feb 15 '16 at 16:20
add a comment |
You have a image of a filesystem (1tb.img) inside a filesystem (/dev/sdf of /media/user/e...aa5).
try
sudo mount "/media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img" /mnt
or
sudo mount -o loop "/media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img" /mnt
- mount should find filesystem type.
- add
-rafter mount to mount your image read only.
EDIT:
- use
/mnt(not/media/user/XXYY) as mount point. sudo mount -o ro,loop -t ntfs /media/user/e3../1tb.img /mnt
try fstyp (or fstype) to check which filesystem
fstype /media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img
analyse file using ...
file
file /media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img
You have a image of a filesystem (1tb.img) inside a filesystem (/dev/sdf of /media/user/e...aa5).
try
sudo mount "/media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img" /mnt
or
sudo mount -o loop "/media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img" /mnt
- mount should find filesystem type.
- add
-rafter mount to mount your image read only.
EDIT:
- use
/mnt(not/media/user/XXYY) as mount point. sudo mount -o ro,loop -t ntfs /media/user/e3../1tb.img /mnt
try fstyp (or fstype) to check which filesystem
fstype /media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img
analyse file using ...
file
file /media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img
edited Feb 15 '16 at 16:15
answered Feb 15 '16 at 12:51
ArchemarArchemar
20k93772
20k93772
both commands:sudo mount "/media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img" "/media/user/B5C4-62C3"orsudo mount -o loop "/media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img" "/media/user/B5C4-62C3"result:mount: block device /media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img is write-protected, mounting read-only mount: you must specify the filesystem typewith-r:mount: you must specify the filesystem typewith-t ntfs:NTFS signature is missing. Failed to mount '/dev/loop2': Invalid argument The device '/dev/loop2' doesn't seem to have a...
– Hooli
Feb 15 '16 at 13:35
@Hooli see my edit
– Archemar
Feb 15 '16 at 16:18
for #1 and #2 I get the same errors mentioned above, for #3 I getfstype: command not found, for #4 I get/media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img: x86 boot sector
– Hooli
Feb 15 '16 at 16:20
add a comment |
both commands:sudo mount "/media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img" "/media/user/B5C4-62C3"orsudo mount -o loop "/media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img" "/media/user/B5C4-62C3"result:mount: block device /media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img is write-protected, mounting read-only mount: you must specify the filesystem typewith-r:mount: you must specify the filesystem typewith-t ntfs:NTFS signature is missing. Failed to mount '/dev/loop2': Invalid argument The device '/dev/loop2' doesn't seem to have a...
– Hooli
Feb 15 '16 at 13:35
@Hooli see my edit
– Archemar
Feb 15 '16 at 16:18
for #1 and #2 I get the same errors mentioned above, for #3 I getfstype: command not found, for #4 I get/media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img: x86 boot sector
– Hooli
Feb 15 '16 at 16:20
both commands:
sudo mount "/media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img" "/media/user/B5C4-62C3" or sudo mount -o loop "/media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img" "/media/user/B5C4-62C3" result: mount: block device /media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img is write-protected, mounting read-only mount: you must specify the filesystem type with -r: mount: you must specify the filesystem type with -t ntfs: NTFS signature is missing. Failed to mount '/dev/loop2': Invalid argument The device '/dev/loop2' doesn't seem to have a...– Hooli
Feb 15 '16 at 13:35
both commands:
sudo mount "/media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img" "/media/user/B5C4-62C3" or sudo mount -o loop "/media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img" "/media/user/B5C4-62C3" result: mount: block device /media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img is write-protected, mounting read-only mount: you must specify the filesystem type with -r: mount: you must specify the filesystem type with -t ntfs: NTFS signature is missing. Failed to mount '/dev/loop2': Invalid argument The device '/dev/loop2' doesn't seem to have a...– Hooli
Feb 15 '16 at 13:35
@Hooli see my edit
– Archemar
Feb 15 '16 at 16:18
@Hooli see my edit
– Archemar
Feb 15 '16 at 16:18
for #1 and #2 I get the same errors mentioned above, for #3 I get
fstype: command not found, for #4 I get /media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img: x86 boot sector– Hooli
Feb 15 '16 at 16:20
for #1 and #2 I get the same errors mentioned above, for #3 I get
fstype: command not found, for #4 I get /media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img: x86 boot sector– Hooli
Feb 15 '16 at 16:20
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- 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%2funix.stackexchange.com%2fquestions%2f263365%2fmount-img-created-by-ddrescue-gui%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