Rakesh K
Rakesh K

Reputation: 712

Change permission of mnt directory files

I am not able to change the permission of files inside mnt directory.

Only owner (mysql) is having the rights to rwx but I am logged in using root still it is not able to change the permissions.

Is there any way of doing this?

enter image description here

Upvotes: 0

Views: 14664

Answers (1)

Marqin
Marqin

Reputation: 1094

First, it should be chmod -R 777 jol_main with -R, not -r.

Second, it seems that jol_main is on partition that is mounted as read-only. You can remount it as read-write with:

sudo mount -o remount,rw /dev/sdd3 /mnt/usb

( or without sudo if you are already a root )

Upvotes: 4

Related Questions