Mount FAT32 partition (external drive) on Mac

external-diskfat32hard driventfspartition

I have an external disk drive of 2TB with two partitions, one NTFS and another with FAT32 format.

The NTFS partition is automatically mounted when i plug the device using Paragon NTFS but I don't know how to mount the FAT32 partition.

Can someone help me with this?
This is what diskutil list shows on terminal

More info:
Here is what windows shows on Disk Management when i plug the external disk
Windows screenshot

Best Answer

mkdir /fat_mount
# create area to mount FAT partition
mount -t msdos /dev/diskXXX /fat_mount

^ Thats how to mount fat drives/partitions in Mac OS, also useful for single user mode recovery. Note I think some versions may ship with "mount_msdos" as opposed to using "mount -t msdos" but I haven't used enough to say for sure.