Linux - HardwareThis forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
I have dual boot, NT4 & red hat. each in own partition. I made a new FAT32 partition, that can be visibly from both OS.
Now is not visibly from linux, only from NT.
How can I mount this partition in linux?
M.
in order to have read-write access from linux add 'umask=000' to the fstab parameters.
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?
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.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.