LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   Accessing my FAT32 through Linux? (https://www.linuxquestions.org/questions/linux-software-2/accessing-my-fat32-through-linux-123330/)

Deathspawner 12-06-2003 03:58 PM

Accessing my FAT32 through Linux?
 
I feel stupid asking this, because I did this before. I want to access my FAT32 partition through Linux, so I can share my music between it and Windows.

I spent a lot of time looking all over, and couldn't find anything. Any help would be appreciated. I am using Red Hat 9.

Thanks!

SciYro 12-06-2003 04:01 PM

recompile your kernel with fat32 suport

2damncommon 12-06-2003 04:07 PM

Don't tell me Red Had doesn't support FAT32 by default, now.
Ummm, so long as it does, you should be able to:
fdisk -l
(Will show you the device name of your FAT32 partition)
mount /dev/your_device_name /mnt/your_mount_point
(Use the device name from the fdisk command. You may need to create a mount point. Such as "mkdir /mnt/windows" or such)
Use the "umount /mnt/your_mount_point" to unmount the partition.
Good Luck.

Skyline 12-06-2003 05:51 PM

......... and for the corresponding /etc/fstab entry:

/dev/hda1 /mnt/windows vfat umask=000,defaults 0 0

substitute in the correct device name of the partition and your mount point name.

codec 12-06-2003 06:29 PM

A good way is give full access to a certain group. In this example the 3rd partition is a win drive. I give full access to group "win". non-win people will have no access to fat drive.

/dev/hda3 /win vfat defaults,umask=007,uid=root,gid=win 0 0

Deathspawner 12-06-2003 08:36 PM

Thanks! I will try those out tonight!


All times are GMT -5. The time now is 02:48 AM.