for my forensics class I'm trying to create a FAT32 container that is mountable on Windows. I did this by using the commands:
$ dd if=/dev/zero of=test.img bs=1M count=6464+0 records in64+0 records out67108864 bytes (67 MB, 64 MiB) copied, 0,135043 s, 497 MB/s$ mkfs.vfat -F 32 test.img
If I try to mount it on Windows via double-click I get the error
The disc image file is corrupted.
Linux mount via -t vfat is also not working properly, since I can not write files to it. Sadly Windows double-click mount is mandatory here...I played around a little with the file and sector sizes but it does not seem to change. Does anybody know how to create a Windows mountable FAT32 container?