LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - General (https://www.linuxquestions.org/questions/linux-general-1/)
-   -   Mounted windows drive but.. (https://www.linuxquestions.org/questions/linux-general-1/mounted-windows-drive-but-31832/)

BuzzStPoint 10-03-2002 07:00 PM

Mounted windows drive but..
 
I can only access though the terminal. I load up the file directory panel and it shows the windows drive with a paddle lock on it.

but if I log in as ROOT user than I can acces it. BUt I want to use my normal user to browse.

How can I get my user (buzz) to have access this?

sourian 10-03-2002 07:11 PM

In /etc/fstab modify the windows entry like this:

/dev/hdax /mnt/win2 vfat defaults,uid=500,gid=500 0 0


Where x is your hardrive and uid, gid are set to your user (buzz).

Regards,
Sourian

Half_Elf 10-03-2002 07:16 PM

If you see a "lock" on the moun point, your user probably don't have right to that dir. try to chmod +666 on thew mount point. All user should be able to READ a mounted partition but only root should be able to WRITE, until you modify your fstab.

BuzzStPoint 10-03-2002 07:35 PM

still dont' work, this is what I wrote in the fstab.

/dev/hda1 /mnt/winxp ntfs buzz,uid=500,gid=500 0 0
&
/dev/hda1 /mnt/winxp ntfs default,uid=500,gid=500 0 0

is that correct? both of those don't work

this is how I mounted.

mkdir /mnt/winxp
mount -t ntfs /dev/hda1 /mnt/winxp

sourian 10-03-2002 07:52 PM

open a console and type id to see the uid & gid for your current user (buzz).

It should work with

/dev/hda1 /mnt/winxp ntfs defaults,uid=500,gid=500 0 0

you should write defaults not default.

hope it works.

sourian

BuzzStPoint 10-03-2002 08:12 PM

Got it working, thatnks a bunch!


All times are GMT -5. The time now is 07:37 AM.