Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Best file system to transfer 5+GB files between OS X and Windows on removable media

I need to transfer DVD image files between a Windows XP computer and a Mac running Leopard.

The machines are not connected via a fast network, and I have a few USB drives floating around that I want to use, e.g. 8GB flash, 60GB and 250GB USB hard drives.

Sometimes the files creep above 4GB (the maximum size of a single file on FAT32), and I've had no luck with NTFS on Leopard. I'm not aware of any drivers for XP/Vista that support Mac file systems like HFS.

Anyone got any suggestions as to what file system would best suit here?

Thanks Tom

like image 452
tomfanning Avatar asked Dec 14 '22 05:12

tomfanning


2 Answers

What did you try for NTFS on Leopard?

It's pretty simple:

  1. install MacFUSE and NTFS-3G driver.
  2. ???
  3. Profit.
like image 178
Loïc Wolff Avatar answered Dec 28 '22 07:12

Loïc Wolff


You could use split on the Mac to divide the files up into 2GB fragments and then recombine the fragments on Windows using copy.

split -b 2048m file

copy xxa + xxb file
like image 21
ewalshe Avatar answered Dec 28 '22 06:12

ewalshe