How to change permissions of the entire windows partition in Linux? I have the Ubuntu package installed on my computer and the /fs/ are fat32.
_____________________
Aniket Suryavanshi http://a-n-y-a.tripod.com _____________________
--------------------------------- Here's a new way to find what you're looking for - Yahoo! Answers Send FREE SMS to your friend's mobile from Yahoo! Messenger Version 8. Get it NOW
On 8/23/06, Aniket Suryavanshi anisur_alisur@yahoo.co.in wrote:
How to change permissions of the entire windows partition in Linux? I have the Ubuntu package installed on my computer and the /fs/ are fat32.
AFAIK, sudo chmod u+/-wrx -R /media/windows should do it. u stands for user w stands for write r stands for read x stands for execute + give - take -R recursive eg. sudo chmod u+r -R /media/windows to make all file in windows folder writeable by the user.
On Thursday 24 August 2006 18:09, mehul wrote:
On 8/23/06, Aniket Suryavanshi anisur_alisur@yahoo.co.in wrote:
How to change permissions of the entire windows partition in Linux? I have the Ubuntu package installed on my computer and the /fs/ are fat32.
AFAIK, sudo chmod u+/-wrx -R /media/windows should do it. u stands for user w stands for write r stands for read x stands for execute
- give
- take
-R recursive eg. sudo chmod u+r -R /media/windows to make all file in windows folder writeable by the user.
Actually there is no point in changing the permissions after the partition is mounted because the permissions wont be retained. If yuo want to mount the partition with certain permissions then check mount's options flag.
On 8/25/06, Dinesh Joshi dinesh.a.joshi@gmail.com wrote:
On Thursday 24 August 2006 18:09, mehul wrote:
On 8/23/06, Aniket Suryavanshi anisur_alisur@yahoo.co.in wrote:
How to change permissions of the entire windows partition in Linux? I have the Ubuntu package installed on my computer and the /fs/ are fat32.
Actually there is no point in changing the permissions after the partition is mounted because the permissions wont be retained. If yuo want to mount the partition with certain permissions then check mount's options flag.
You can use mount options to set permissions or alternatively specify the options in fstab if the partition is mounted at boot. The below link should help giving you a pointer on how to do it. http://www.redhat.com/archives/fedora-list/2006-May/msg03912.html