NTFS USB-Connected Partition Will Not Mount

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
1
down vote

favorite
1












First Error, when connecting the drive or attempting to mount it manually:



Mount is denied because the NTFS volume is already exclusively opened. 
The volume may be already mounted, or another software may use it which
could be identified for example by the help of the 'fuser' command.


So we try to umount it and get:



umount: /var/run/media/blah/foo: mountpoint not found


So we add a mountpoint somewhere else and try mounting there, and get the first error, then try umounting again, and get:



umount: /var/run/media/blah/foo: not mounted


... no reference to the location I gave it on the mount - /media/foo (a location that exists) - but no complaint that the mountpoint is 'not found' this time.



If I check with the mount command, it does show the device mounted:



/dev/sdb1 on /var/run/media/blah/foo type fuseblk
(rw,nosuid,nodev,relatime,user_id=0,group_id=0,default_permissions,
allow_other,blksize=4096)


Yet umounts fail. The 'force' option does nothing in any of these cases.



So, it seems the device is 'already mounted' if I want to mount it, as evidenced by the output of 'mount' - but not mounted if I want to umount it.



Note, the device was NOT connected to a Windows that hibernated, and running the command to delete the hibernate file (worth a shot) fails again with the 'not mounted' error. Also, the FAT32 partition on the same device works fine.



Ideas please? Thanks.




Months later, still no idea why this happens. I can plug it into an old windoze 2k box, and it mounts just fine. I ran disk-checking there, but found no problems.



I should have added above that running 'fuser -c /var/run/media/blah/foo returns:



Specified filename /var/run/media/blah/foo does not exist


The lsof command simply returns empty (grep'd for any part of the path).



In theory, no processes could possibly be using that device/mountpoint. If they are, I have no idea how to find them, given fuser doesn't know. Neither does lsof.



Also, not running NSF, and "losetup -a" returns nothing.










share|improve this question



























    up vote
    1
    down vote

    favorite
    1












    First Error, when connecting the drive or attempting to mount it manually:



    Mount is denied because the NTFS volume is already exclusively opened. 
    The volume may be already mounted, or another software may use it which
    could be identified for example by the help of the 'fuser' command.


    So we try to umount it and get:



    umount: /var/run/media/blah/foo: mountpoint not found


    So we add a mountpoint somewhere else and try mounting there, and get the first error, then try umounting again, and get:



    umount: /var/run/media/blah/foo: not mounted


    ... no reference to the location I gave it on the mount - /media/foo (a location that exists) - but no complaint that the mountpoint is 'not found' this time.



    If I check with the mount command, it does show the device mounted:



    /dev/sdb1 on /var/run/media/blah/foo type fuseblk
    (rw,nosuid,nodev,relatime,user_id=0,group_id=0,default_permissions,
    allow_other,blksize=4096)


    Yet umounts fail. The 'force' option does nothing in any of these cases.



    So, it seems the device is 'already mounted' if I want to mount it, as evidenced by the output of 'mount' - but not mounted if I want to umount it.



    Note, the device was NOT connected to a Windows that hibernated, and running the command to delete the hibernate file (worth a shot) fails again with the 'not mounted' error. Also, the FAT32 partition on the same device works fine.



    Ideas please? Thanks.




    Months later, still no idea why this happens. I can plug it into an old windoze 2k box, and it mounts just fine. I ran disk-checking there, but found no problems.



    I should have added above that running 'fuser -c /var/run/media/blah/foo returns:



    Specified filename /var/run/media/blah/foo does not exist


    The lsof command simply returns empty (grep'd for any part of the path).



    In theory, no processes could possibly be using that device/mountpoint. If they are, I have no idea how to find them, given fuser doesn't know. Neither does lsof.



    Also, not running NSF, and "losetup -a" returns nothing.










    share|improve this question

























      up vote
      1
      down vote

      favorite
      1









      up vote
      1
      down vote

      favorite
      1






      1





      First Error, when connecting the drive or attempting to mount it manually:



      Mount is denied because the NTFS volume is already exclusively opened. 
      The volume may be already mounted, or another software may use it which
      could be identified for example by the help of the 'fuser' command.


      So we try to umount it and get:



      umount: /var/run/media/blah/foo: mountpoint not found


      So we add a mountpoint somewhere else and try mounting there, and get the first error, then try umounting again, and get:



      umount: /var/run/media/blah/foo: not mounted


      ... no reference to the location I gave it on the mount - /media/foo (a location that exists) - but no complaint that the mountpoint is 'not found' this time.



      If I check with the mount command, it does show the device mounted:



      /dev/sdb1 on /var/run/media/blah/foo type fuseblk
      (rw,nosuid,nodev,relatime,user_id=0,group_id=0,default_permissions,
      allow_other,blksize=4096)


      Yet umounts fail. The 'force' option does nothing in any of these cases.



      So, it seems the device is 'already mounted' if I want to mount it, as evidenced by the output of 'mount' - but not mounted if I want to umount it.



      Note, the device was NOT connected to a Windows that hibernated, and running the command to delete the hibernate file (worth a shot) fails again with the 'not mounted' error. Also, the FAT32 partition on the same device works fine.



      Ideas please? Thanks.




      Months later, still no idea why this happens. I can plug it into an old windoze 2k box, and it mounts just fine. I ran disk-checking there, but found no problems.



      I should have added above that running 'fuser -c /var/run/media/blah/foo returns:



      Specified filename /var/run/media/blah/foo does not exist


      The lsof command simply returns empty (grep'd for any part of the path).



      In theory, no processes could possibly be using that device/mountpoint. If they are, I have no idea how to find them, given fuser doesn't know. Neither does lsof.



      Also, not running NSF, and "losetup -a" returns nothing.










      share|improve this question















      First Error, when connecting the drive or attempting to mount it manually:



      Mount is denied because the NTFS volume is already exclusively opened. 
      The volume may be already mounted, or another software may use it which
      could be identified for example by the help of the 'fuser' command.


      So we try to umount it and get:



      umount: /var/run/media/blah/foo: mountpoint not found


      So we add a mountpoint somewhere else and try mounting there, and get the first error, then try umounting again, and get:



      umount: /var/run/media/blah/foo: not mounted


      ... no reference to the location I gave it on the mount - /media/foo (a location that exists) - but no complaint that the mountpoint is 'not found' this time.



      If I check with the mount command, it does show the device mounted:



      /dev/sdb1 on /var/run/media/blah/foo type fuseblk
      (rw,nosuid,nodev,relatime,user_id=0,group_id=0,default_permissions,
      allow_other,blksize=4096)


      Yet umounts fail. The 'force' option does nothing in any of these cases.



      So, it seems the device is 'already mounted' if I want to mount it, as evidenced by the output of 'mount' - but not mounted if I want to umount it.



      Note, the device was NOT connected to a Windows that hibernated, and running the command to delete the hibernate file (worth a shot) fails again with the 'not mounted' error. Also, the FAT32 partition on the same device works fine.



      Ideas please? Thanks.




      Months later, still no idea why this happens. I can plug it into an old windoze 2k box, and it mounts just fine. I ran disk-checking there, but found no problems.



      I should have added above that running 'fuser -c /var/run/media/blah/foo returns:



      Specified filename /var/run/media/blah/foo does not exist


      The lsof command simply returns empty (grep'd for any part of the path).



      In theory, no processes could possibly be using that device/mountpoint. If they are, I have no idea how to find them, given fuser doesn't know. Neither does lsof.



      Also, not running NSF, and "losetup -a" returns nothing.







      usb-drive ntfs






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Sep 18 '14 at 17:07

























      asked Apr 28 '14 at 7:19









      JosephK

      25127




      25127




















          1 Answer
          1






          active

          oldest

          votes

















          up vote
          0
          down vote














          1. First you check: lsblk



            So here you will get block is mounted to particular location




          2. So first unmount the drive:



            niraj1@ns2:/$ sudo umount /media/niraj1/BC1C0B701C0B24CC



          3. Then mount the drive:



            niraj1@ns2:/$ sudo mount /dev/sdb1 /media/usb


          Hope this will fix your issue.






          share|improve this answer






















          • What mount type did you use to mount the device?
            – Raman Sailopal
            Jul 29 '17 at 17:57










          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',
          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%2f126859%2fntfs-usb-connected-partition-will-not-mount%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








          up vote
          0
          down vote














          1. First you check: lsblk



            So here you will get block is mounted to particular location




          2. So first unmount the drive:



            niraj1@ns2:/$ sudo umount /media/niraj1/BC1C0B701C0B24CC



          3. Then mount the drive:



            niraj1@ns2:/$ sudo mount /dev/sdb1 /media/usb


          Hope this will fix your issue.






          share|improve this answer






















          • What mount type did you use to mount the device?
            – Raman Sailopal
            Jul 29 '17 at 17:57














          up vote
          0
          down vote














          1. First you check: lsblk



            So here you will get block is mounted to particular location




          2. So first unmount the drive:



            niraj1@ns2:/$ sudo umount /media/niraj1/BC1C0B701C0B24CC



          3. Then mount the drive:



            niraj1@ns2:/$ sudo mount /dev/sdb1 /media/usb


          Hope this will fix your issue.






          share|improve this answer






















          • What mount type did you use to mount the device?
            – Raman Sailopal
            Jul 29 '17 at 17:57












          up vote
          0
          down vote










          up vote
          0
          down vote










          1. First you check: lsblk



            So here you will get block is mounted to particular location




          2. So first unmount the drive:



            niraj1@ns2:/$ sudo umount /media/niraj1/BC1C0B701C0B24CC



          3. Then mount the drive:



            niraj1@ns2:/$ sudo mount /dev/sdb1 /media/usb


          Hope this will fix your issue.






          share|improve this answer















          1. First you check: lsblk



            So here you will get block is mounted to particular location




          2. So first unmount the drive:



            niraj1@ns2:/$ sudo umount /media/niraj1/BC1C0B701C0B24CC



          3. Then mount the drive:



            niraj1@ns2:/$ sudo mount /dev/sdb1 /media/usb


          Hope this will fix your issue.







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Jul 29 '17 at 19:40









          Anthon

          59.9k17102163




          59.9k17102163










          answered Jul 29 '17 at 17:54









          Niraj Deo

          11




          11











          • What mount type did you use to mount the device?
            – Raman Sailopal
            Jul 29 '17 at 17:57
















          • What mount type did you use to mount the device?
            – Raman Sailopal
            Jul 29 '17 at 17:57















          What mount type did you use to mount the device?
          – Raman Sailopal
          Jul 29 '17 at 17:57




          What mount type did you use to mount the device?
          – Raman Sailopal
          Jul 29 '17 at 17:57

















          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.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • 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%2f126859%2fntfs-usb-connected-partition-will-not-mount%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

          Peggy Mitchell

          Palaiologos

          The Forum (Inglewood, California)