|
RE:mounting sd cards -> /etc/fstab
Hi there
This sounds like the access configurations for the mounted device in /etc/fstab. The fstab file provides information on which device should be attached to mount point. Often you will find entries that look thus
/dev/fd0 /mnt/floppy noauto 0, 0
The above says for dev/fd0 attach it to mnt/floppy in the file system, but do not do this automatically and the two numbers (Try man fstab form info about that).
now your sd-card, probably has a similar entry. what you need to do is enable user access thus
e.g
/dev/fd0 /mnt/floppy noauto,users 0, 0
So it should look something like this
/dev/sd-card /mnt/sd-card noauto,users 0,0
check the man pages for more info on fstab
HTH Ugly..
|