Quote:
|
Originally Posted by Rollotamasi
Im sorry, I am VERY new to linux. Could someone that knows what they are doing take the strings the three people posted and combine them into 1 single command line for me?
|
Assuming /dev/hda8 is your FAT32 partition and you have made a directory named /mnt/storage.
mount -t vfat -o rw,umask=000 /dev/hda8 /mnt/storage
Th option -o rw and umask just make sure either one will give you write access. If you are using PAM, you may have to chmod the directory /mnt/storage after you have mount it. The option -t vfat uses the vfat module to be used for mounting a FAT32 partition.
The similar syntax as above can be used in /etc/fstab, so Linux can automaticlly mount it. The syntax just need to be change slightly.
/dev/hda8 /mnt/storage vfat rw,umask=000 0 0
I recommend to not include FAT32 partitions when using the dump command for backups, so that is why I specify 0. Also I recommend not running fsck on FAT32 because it is not reliable when there are cross-link clusters and other problems that Microsoft's utility finds which unfortunately does a better job when scanning and fixing.
BTW, RTFM!