I have big problem. I am using MS VC++ on win and Qt Creator on ubuntu. So, today I have problem. I can't change my permissions on my flash drive (FAT32).
Q: How I can change permissions on FAT32 flash-drive?
UPD: I can't do it under root.
|
|
|
vfat does not support linux permissions. You can set permissions manually when you mount the device. Unmount the flash drive from nautilus, but do not remove it.
You can possibly work around the issue if you use ntfs on the flash drive, and in that case mount it with the permissions option.
With the permissions option chown and chmod should work. See man mount Other options might be to use ext2 on the flash drive (smaller overhead) and the fs-driver on windows |
|||||
|
|
FAT32 does not support Linux-like permissions. The only possibility which comes to my mind is, to change the settings in /etc/fstab for the whole drive. On mounting, these permissions are mapped to the whole drive, but you can't distinguish between executable files, read and write permissions from file to file. And since you need to execute a directory to enter it, you need global execute permissions. And therefore global read permissions too. A typical entry would look like this:
uid would be your uid, gid=46 is plugdev on my system, used for the hotplug daemon. |
|||
|
|