How to solve mounted partition error in Debian 7

0

I installed MATE on Debian 7 (LXDE), and encountered problems with both ntfs and ext4 partitions when I mount any partitions (ntfs, ext) using MATE file manager (Caja). I don't recall how it was with LXDE.

# mkdir X
mkdir: cannot create directory `X': Operation not permitted
# lsattr somefile.txt 
lsattr: Inappropriate ioctl for device While reading flags on somefile.txt

Please help.

Alex

Posted 2014-04-02T11:36:27.567

Reputation: 117

What result do you get if you run sudo mkdir? – Matthew Williams – 2014-04-02T11:47:48.810

mkdir: cannot create directory XXXX Operation not permitted – Alex – 2014-04-02T12:02:35.093

Could you post the output of mount -v and tell us on in which directory you are getting this error? – mtak – 2014-04-02T12:20:34.683

Of course, thanks for asking:

mount -V ntfs dev/sda3 /media/N

mount from util-linux 2.20.1 (with libblkid and selinux support) -- but nothing was mounted. – Alex – 2014-04-02T12:32:27.093

You accidentally posted the output of mount -V. Please post the output of mount -v (lowercase v) – mtak – 2014-04-02T12:52:53.763

Thanx, here it is: # mount -v sysfs on /sys type sysfs (rw,nosuid,nodev,noexec,relatime) proc on /proc type proc (rw,nosuid,nodev,noexec,relatime) udev on /dev type devtmpfs (rw,relatime,size=10240k,nr_inodes=214579,mode=755) devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000) tmpfs on /run type tmpfs (rw,nosuid,noexec,relatime,size=411684k,mode=755) /dev/disk/by-uuid/4e444302-bc6b-4cf4-b3b3-1d8978eb9680 on / type ext4 (rw,relatime,errors=remount-ro,user_xattr,barrier=1,data=ordered) – Alex – 2014-04-02T13:17:03.843

AND: tmpfs on /run/lock type tmpfs (rw,nosuid,nodev,noexec,relatime,size=5120k) tmpfs on /run/shm type tmpfs (rw,nosuid,nodev,noexec,relatime,size=1906740k) rpc_pipefs on /var/lib/nfs/rpc_pipefs type rpc_pipefs (rw,relatime) – Alex – 2014-04-02T13:17:30.543

No answers