PDA

View Full Version : mounted device permisiion


benk
05-18-03, 07:09 PM
I mounted hdb1 at /mnt/Win and hdb5 at /mnt/win98 and work fine. the ploblems its when i try to unpack a tar.gz file like xine-libs, it work at my hda = / usr/src but when i try to unpack the file at /mnt/win98/l/ make errors like " xine-lib-1beta cannont change the owner to uid 1001, gid 1001 " not permission to operation

tar out error.
need to know how can fix it , and what i should to do . thz.

there is Attach my /etc/fstab file config

remu
05-19-03, 09:38 AM
hi,

The reason for the errormessages is, that VFAT filesystem doesn't have any security bits in it like NTFS or Linux filesystems has.

To get rid of the error messages, you could add two parameters to the lines where you mount hdb1 and hdb5.

The parameters are users,quiet, so the hdb1 line would look like this:
/dev/hdb1 /mnt/Win vfat users,quiet,rw 0 0

The changes allows normal users to mount the partition, and when making changes on the partition, linux supresses the error messages. The rw part is unnecessary.

benk
05-19-03, 10:24 AM
its work , thankz so much.