Hello there!
I cannot say I'am a newbie in Linux (i have been using it for a two years), but recently i bought a SD card for my laptop on Fedora Linux.
And everything just works fine: i edited the /etc/fstab file to mount my sd drive at /doodisk directory automatically.
But i cannot change file-access permissions (and owner) of the /doodisk direcotry (where my sd card - /dev/mmcblk0p1 is mounted).
I tried this commands:
and it doesn't work. Permission of the /doodisk directory are still:
4 drwxrwxrwx. 1 root root 4096 Jan 6 18:29 doodisk
I guess i can specify mount options in the /etc/fstab, but i didn't found how.
Actually my sd card is mounted by this option in /etc/fstab:
UUID=15AC524D34E4F77D /doodisk ntfs defaults 0 0
I need help to set this permission: 755 (drwxr-xr-x.) and this owner: doopath:doopath (gid=1000, uid=1000).
I cannot say I'am a newbie in Linux (i have been using it for a two years), but recently i bought a SD card for my laptop on Fedora Linux.
And everything just works fine: i edited the /etc/fstab file to mount my sd drive at /doodisk directory automatically.
But i cannot change file-access permissions (and owner) of the /doodisk direcotry (where my sd card - /dev/mmcblk0p1 is mounted).
I tried this commands:
Bash:
sudo su
chown doopath:doopath /doodisk
# or chown doopath:doopath -R /doodisk
chmod 755 /doodisk
# or chmod 755 -R /doodisk
and it doesn't work. Permission of the /doodisk directory are still:
4 drwxrwxrwx. 1 root root 4096 Jan 6 18:29 doodisk
I guess i can specify mount options in the /etc/fstab, but i didn't found how.
Actually my sd card is mounted by this option in /etc/fstab:
UUID=15AC524D34E4F77D /doodisk ntfs defaults 0 0
I need help to set this permission: 755 (drwxr-xr-x.) and this owner: doopath:doopath (gid=1000, uid=1000).