i cant access mounted partitions (hda1,hdc1) from normal users.. only from root...
how i fix this?
Printable View
i cant access mounted partitions (hda1,hdc1) from normal users.. only from root...
how i fix this?
Firstly mount the drive with the mount commadn as root e.g.and then give everyone permissions as root withCode:mount /dev/hda1 /mnt/hda1
now everyone will have access to hda1 ;)Code:chmod 777 /mnt/hda1
dulunio
didnt work ....
what does your /etc/fstab look like?
dylunio
/dev/hda2 / ext2 defaults 1 1
/dev/hda1 /fat-c ntfs ro 1 0
/dev/hdc1 /slave ntfs users 1 0
/dev/cdrom /mnt/cdrom iso9660 noauto,owner,ro 0 0
/dev/fd0 /mnt/floppy auto noauto,owner 0 0
devpts /dev/pts devpts gid=5,mode=620 0 0
proc /proc proc defaults 0 0
but ... i changed /dev/hdc1 to /mnt/slave and /dev/hda1 to /mnt/windows
and didnt change in that file... anyways i cant access from a normal user..
What happens when it look like:?:Quote:
/dev/hda2 / ext2 defaults 1 1
/dev/hda1 /mnt/windows ntfs ro,users,user 1 0
/dev/hdc1 /mnt/slave ntfs ro,users,user 1 0
/dev/cdrom /mnt/cdrom iso9660 noauto,owner,ro 0 0
/dev/fd0 /mnt/floppy auto noauto,owner 0 0
devpts /dev/pts devpts gid=5,mode=620 0 0
proc /proc proc defaults 0 0
dylunio
i have to edit the file like that?
Yeah, see how it goes when it looks like the above.Quote:
Originally Posted by tr
dylunio