View previous topic :: View next topic |
Author |
Message |
mlmartin n00b
Joined: 29 Aug 2004 Posts: 31
|
Posted: Sat Sep 25, 2004 9:02 pm Post subject: Mounting usb device as user not working<SOLVED> |
|
|
I am able to mount and explore my folders on my camera as root, but I cannot do it as a normal user. I did a chmod 777 on my folder, but when I mount my camera it makes it go to this
Code: |
drwxr--r-- 3 root root 8192 Dec 31 1969 usb
|
I mount it this way:
Code: |
mount /dev/sda1 /mnt/usb
|
Last edited by mlmartin on Sat Sep 25, 2004 9:35 pm; edited 1 time in total |
|
Back to top |
|
|
inode77 Veteran
Joined: 20 Jan 2004 Posts: 1303 Location: Heart of Europe
|
Posted: Sat Sep 25, 2004 9:08 pm Post subject: |
|
|
Add this
Code: | /dev/sda1 /mnt/usb auto noauto,user 0 0 |
to /etc/fstab and type
If you like to force permissions you can modify this line.
Code: | noauto,user,uid=1000,gid=100 | (Type id as user and use the values assigned there) |
|
Back to top |
|
|
mlmartin n00b
Joined: 29 Aug 2004 Posts: 31
|
Posted: Sat Sep 25, 2004 9:36 pm Post subject: |
|
|
SOLVED Over looked the fact that there was problems in my /etc/fstab. Works lot better now. |
|
Back to top |
|
|
|