Monday, May 6, 2024
 Popular · Latest · Hot · Upcoming
5
rated 0 times [  5] [ 0]  / answers: 1 / hits: 8605  / 2 Years ago, sat, march 19, 2022, 4:04:01

When I try and mount a disk to two mount mounts I get the following error:



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.


How do I prevent this message from displaying?


More From » mount

 Answers
0

You cannot mount an NTFS volume in two places. This is by design to avoid FS corruption. You can, however, make a symlink from one location to the other.



Let's say you mount it at /mnt/ntfs1 and want to make a second mount point at /mnt/ntfs2. You can symlink /mnt/ntfs2 to /mnt/ntfs1 as follows:



sudo ln -s /mnt/ntfs1 /mnt/ntfs2


Note the order in which the directories are given. The one where it is successfully mounted is first, and the place where you want to "mount" it is second.



Note that this is imperfect as using cd .. in shells will cause you to work within the wrong copy, but for file management programs, this should work, with one caveat, from here:




NOTE: There is the danger of a file becoming corrupted if more than one person tries to edit it at the same time.



[#34966] Sunday, March 20, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
cugure

Total Points: 188
Total Questions: 110
Total Answers: 103

Location: Dominican Republic
Member since Sun, Sep 4, 2022
2 Years ago
;