Mount .img created by ddrescue-gui












0















I'm trying to recover data after formatting my hdd. I installed ddrescue-gui and performed the following tasks:




  1. Select source (formatted hdd), no log, destination (img file inside separate hdd) and set to fastest recovery then click start


enter image description here




  1. 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:


enter image description here





  1. 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?



  2. The file is currently sitting on a separate hdd and the 1tb hdd I'm trying to recover is inaccessible:



enter image description here



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.










share|improve this question














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.




















    0















    I'm trying to recover data after formatting my hdd. I installed ddrescue-gui and performed the following tasks:




    1. Select source (formatted hdd), no log, destination (img file inside separate hdd) and set to fastest recovery then click start


    enter image description here




    1. 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:


    enter image description here





    1. 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?



    2. The file is currently sitting on a separate hdd and the 1tb hdd I'm trying to recover is inaccessible:



    enter image description here



    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.










    share|improve this question














    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.


















      0












      0








      0








      I'm trying to recover data after formatting my hdd. I installed ddrescue-gui and performed the following tasks:




      1. Select source (formatted hdd), no log, destination (img file inside separate hdd) and set to fastest recovery then click start


      enter image description here




      1. 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:


      enter image description here





      1. 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?



      2. The file is currently sitting on a separate hdd and the 1tb hdd I'm trying to recover is inaccessible:



      enter image description here



      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.










      share|improve this question














      I'm trying to recover data after formatting my hdd. I installed ddrescue-gui and performed the following tasks:




      1. Select source (formatted hdd), no log, destination (img file inside separate hdd) and set to fastest recovery then click start


      enter image description here




      1. 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:


      enter image description here





      1. 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?



      2. The file is currently sitting on a separate hdd and the 1tb hdd I'm trying to recover is inaccessible:



      enter image description here



      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      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.
























          1 Answer
          1






          active

          oldest

          votes


















          0














          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



          1. mount should find filesystem type.

          2. add -r after mount to mount your image read only.


          EDIT:




          1. use /mnt (not /media/user/XXYY) as mount point.

          2. sudo mount -o ro,loop -t ntfs /media/user/e3../1tb.img /mnt


          3. try fstyp (or fstype) to check which filesystem



            fstype /media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img



          4. analyse file using ... file



            file /media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img







          share|improve this answer


























          • 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











          • 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











          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
          });


          }
          });














          draft saved

          draft discarded


















          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









          0














          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



          1. mount should find filesystem type.

          2. add -r after mount to mount your image read only.


          EDIT:




          1. use /mnt (not /media/user/XXYY) as mount point.

          2. sudo mount -o ro,loop -t ntfs /media/user/e3../1tb.img /mnt


          3. try fstyp (or fstype) to check which filesystem



            fstype /media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img



          4. analyse file using ... file



            file /media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img







          share|improve this answer


























          • 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











          • 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
















          0














          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



          1. mount should find filesystem type.

          2. add -r after mount to mount your image read only.


          EDIT:




          1. use /mnt (not /media/user/XXYY) as mount point.

          2. sudo mount -o ro,loop -t ntfs /media/user/e3../1tb.img /mnt


          3. try fstyp (or fstype) to check which filesystem



            fstype /media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img



          4. analyse file using ... file



            file /media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img







          share|improve this answer


























          • 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











          • 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














          0












          0








          0







          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



          1. mount should find filesystem type.

          2. add -r after mount to mount your image read only.


          EDIT:




          1. use /mnt (not /media/user/XXYY) as mount point.

          2. sudo mount -o ro,loop -t ntfs /media/user/e3../1tb.img /mnt


          3. try fstyp (or fstype) to check which filesystem



            fstype /media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img



          4. analyse file using ... file



            file /media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img







          share|improve this answer















          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



          1. mount should find filesystem type.

          2. add -r after mount to mount your image read only.


          EDIT:




          1. use /mnt (not /media/user/XXYY) as mount point.

          2. sudo mount -o ro,loop -t ntfs /media/user/e3../1tb.img /mnt


          3. try fstyp (or fstype) to check which filesystem



            fstype /media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img



          4. analyse file using ... file



            file /media/user/e3cfeead-6e65-4af5-beb8-bbfa12fbdaa5/1tb.img








          share|improve this answer














          share|improve this answer



          share|improve this answer








          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" 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











          • 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



















          • 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











          • 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

















          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


















          draft saved

          draft discarded




















































          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.




          draft saved


          draft discarded














          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





















































          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







          Popular posts from this blog

          Histoire des bourses de valeurs

          Why is there Russian traffic in my log files?

          Rename multiple files to decrement number in file name?