chmod -v acknowledges but subsequent ls shows no change

Asked by Tommy Pollák

/media$ ls -alF
total 24
drwxr-xr-x 4 root root 4096 Jun 12 2013 ./
drwxr-xr-x 26 root root 4096 Apr 4 12:01 ../
drwx------ 1 me me 12288 Apr 2 15:34 OS/
...
/media$ chmod -v o+x OS/
mode of ‘OS/’ changed from 0700 (rwx------) to 0701 (rwx-----x)
/media$ ls -alF
total 24
drwxr-xr-x 4 root root 4096 Jun 12 2013 ./
drwxr-xr-x 26 root root 4096 Apr 4 12:01 ../
drwx------ 1 me me 12288 Apr 2 15:34 OS/

OS is a NTFS file system.

Why can I not set the permissions of OS?

Ubuntu 13.10

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu Edit question
Assignee:
No assignee Edit question
Solved by:
actionparsnip
Solved:
Last query:
Last reply:
Revision history for this message
Best actionparsnip (andrew-woodhead666) said :
#1

NTFS cannot hold Linux filesystem permissions so using chmod will do nothing. You need to set the access at miunt time with non-Linux filesystems.

Revision history for this message
Tommy Pollák (tpollak) said :
#2

Thanks.

What I assumed.