Hello everybody!
I own a Raspberry Pi B, on which I recently installed opensuse 13.1 following these intructions.
System is up and running headlessly via SSH, no issues there.
The problems start as soon as I want to mount my USB flash drive, which contains a single NTFS partition. (ntfs-3g and ntfsutils are installed)
# ntfs-3g /dev/sda1 /mnt/sda1
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.
Same output for mount. Additionally, fuser does not work on my system, maybe it’s part of a package I do not have yet?
When I try to unmount:
# umount /dev/sda1
umount: /mnt/sda1: not mounted
Does anybody know what seems to be the problem there?
What I noticed is that, though my fstab is rather short, mount shows quite a lot:
# cat /etc/fstab
devpts /dev/pts devpts mode=0620,gid=5 0 0
proc /proc proc defaults 0 0
# mount
debugfs on /sys/kernel/debug type debugfs (rw)
mqueue on /dev/mqueue type mqueue (rw)
devpts on /dev/pts type devpts (rw,mode=0620,gid=5)
proc on /proc type proc (rw)
configfs on /sys/kernel/config type configfs (rw)
/run on /var/run type none (rw,bind)
/run/lock on /var/lock type none (rw,bind)
debugfs on /sys/kernel/debug type debugfs (rw)
mqueue on /dev/mqueue type mqueue (rw)
configfs on /sys/kernel/config type configfs (rw)
/run on /var/run type none (rw,bind)
/run/lock on /var/lock type none (rw,bind)
fusectl on /sys/fs/fuse/connections type fusectl (rw)
/dev/sda1 on /mnt/sda1 type fuseblk (rw,nosuid,nodev,allow_other,blksize=4096)
debugfs on /sys/kernel/debug type debugfs (rw)
mqueue on /dev/mqueue type mqueue (rw)
configfs on /sys/kernel/config type configfs (rw)
/run on /var/run type none (rw,bind)
debugfs on /sys/kernel/debug type debugfs (rw)
mqueue on /dev/mqueue type mqueue (rw)
configfs on /sys/kernel/config type configfs (rw)
/run on /var/run type none (rw,bind)
/run/lock on /var/lock type none (rw,bind)
debugfs on /sys/kernel/debug type debugfs (rw)
mqueue on /dev/mqueue type mqueue (rw)
configfs on /sys/kernel/config type configfs (rw)
/run on /var/run type none (rw,bind)
/run/lock on /var/lock type none (rw,bind)
debugfs on /sys/kernel/debug type debugfs (rw)
mqueue on /dev/mqueue type mqueue (rw)
configfs on /sys/kernel/config type configfs (rw)
/run on /var/run type none (rw,bind)
/run/lock on /var/lock type none (rw,bind)
debugfs on /sys/kernel/debug type debugfs (rw)
mqueue on /dev/mqueue type mqueue (rw)
configfs on /sys/kernel/config type configfs (rw)
/run on /var/run type none (rw,bind)
/run/lock on /var/lock type none (rw,bind)
debugfs on /sys/kernel/debug type debugfs (rw)
mqueue on /dev/mqueue type mqueue (rw)
configfs on /sys/kernel/config type configfs (rw)
/run on /var/run type none (rw,bind)
/run/lock on /var/lock type none (rw,bind)
debugfs on /sys/kernel/debug type debugfs (rw)
mqueue on /dev/mqueue type mqueue (rw)
configfs on /sys/kernel/config type configfs (rw)
/run on /var/run type none (rw,bind)
/run/lock on /var/lock type none (rw,bind)
debugfs on /sys/kernel/debug type debugfs (rw)
mqueue on /dev/mqueue type mqueue (rw)
configfs on /sys/kernel/config type configfs (rw)
/run on /var/run type none (rw,bind)
/run/lock on /var/lock type none (rw,bind)
mqueue on /dev/mqueue type mqueue (rw)
debugfs on /sys/kernel/debug type debugfs (rw)
configfs on /sys/kernel/config type configfs (rw)
/run on /var/run type none (rw,bind)
/run/lock on /var/lock type none (rw,bind)
debugfs on /sys/kernel/debug type debugfs (rw)
mqueue on /dev/mqueue type mqueue (rw)
configfs on /sys/kernel/config type configfs (rw)
/run on /var/run type none (rw,bind)
debugfs on /sys/kernel/debug type debugfs (rw)
mqueue on /dev/mqueue type mqueue (rw)
configfs on /sys/kernel/config type configfs (rw)
/run on /var/run type none (rw,bind)
/run on /var/run type none (rw,bind)
fusectl on /sys/fs/fuse/connections type fusectl (rw)
Thank you for your help!