If I have a file in my Home directory I can modify its permissions no problem-o.
But, when I try to modify the permissions of a file located on a separate NTFS partition I can't seem to get 'er working. No errors are being returned so not particularly sure what Linux wants me to do.
Here is my file structure:
/media/Shared/Source_Code/Cross_Platform/a.out
Next 3 levels have identical permissions
Specifically just trying to give myself executable permissions on a.out
Following two commands execute fine, but the file permission doesn't change.
8)
But, when I try to modify the permissions of a file located on a separate NTFS partition I can't seem to get 'er working. No errors are being returned so not particularly sure what Linux wants me to do.
Here is my file structure:
/media/Shared/Source_Code/Cross_Platform/a.out
Code:
/media/ owner: root drwxr-xr-x
Code:
/Shared/Source_Code/Cross_Platform owner: chris drwx-----
Code:
a.out owner: chris -rw-----
Following two commands execute fine, but the file permission doesn't change.
Code:
chmod u=rwx a.out chmod 700 a.out
Comment