df
/dev/sdc1       976759804 743605988  233153816   77% /media/Rb1TB
/dev/sdd1      1953477628 178017088 1775460540   10% /media/worker/RB2TB

This means both your devices are mounted :
/dev/sdc1 is mounted on /media/Rb1TB and
/dev/sdd1 is mounted on /media/worker/RB2TB

Then I start the disk-manager
Message
The following entries of your configuration file use the same mount point:
/dev/sdc1 on /media/Rb1TB (ntfs) = keep selected
UUID=BC863C92863C4EE0 on /media/Rb1TB (ntfs)

This tells you you have conflicting lines in /etc/fstab :

> UUID=BC863C92863C4EE0 /media/Rb1TB ntfs defaults,nls=utf8,umask=0222 0  0
and
> /dev/sdc1 /media/Rb1TB ntfs rw,user,noauto,uid=0,gid=46,umask=007,nls=utf8 0

These lines conflict because they declare the same mount
point (as UUID=BC863C92863C4EE0 is currently plugged in
as /dev/sdc1). You should probably only use the one with
UUID, so that it will be mounted the same way even if you
plug it differently. However, if this is for backup, you
should not set umask as 0222 (which means you want to be
protected against writing to it.
Just remove the umask option if you do not want any
permission limitation.

Besides, the other device is strangely mounted according
to /etc/fstab it was expected to be mounted to
/media/RB2TB, not /media/worker/RB2TB


The ntfs-3g is still from alien -d ntfs-3g-2013.1.13-6.fc20.x86_64.rpm and this 
is from Fedora 20
The ntfs-3g Version is blocked in Synaptic.

This ntfs-3g version is clear from the file name,
and I wanted the version from Debian repository.

Root Shell
root@7deb:/home/worker# df
/dev/sdc1       976759804 743605988  233153816   77% /media/Rb1TB
/dev/sdd1      1953477628 178017088 1775460540   10% /media/RB2TB
root@7deb:/home/worker#

root@7deb:/home/worker# mount /dev/sdc1 /media/Rb1TB
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.

The output from df above shows that /dev/sdc1 is
currently mounted on /media/Rb1TB, so you cannot
mount it again, which is what the above message says.

As it was mounted automatically as requested in
/etc/fstab, you do not have to mount manually.


--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Reply via email to