I am attempting to transfer a 6.1 GB file between a Ubuntu Linux 9.10 and a Mac OSX 10.6. As the file size is over 4GB I can't use Fat32 and I cant seem to format the USB drive to NTFS in either OS. Is there another file type that is read/writable for both OS?
|
feedback
|
|
So, after searching the Ubuntu forums, i seem to have answered my own question. athough Ubuntu's Disk Utility does not have the ability to format to NTFS. GParted does. Thanks for the looks! | |||||
feedback
|
|
Ubuntu provides a mkfs.ntfs aka mkntfs command in the ntfsprogs package. See the manpage or the Linux-NTFS wiki. There also seems to be a port of ntfsprogs to Mac OS X through DarwinPorts. | |||
|
feedback
|
|
For a one off large file transfer you would probably as well just using the It wouldn't take many repetitions of this procedure before you are back to looking at reformatting however... | |||
|
feedback
|
|
You can use dd to cut the file:
Then reassemble:
If you need to do this often, I'd either write a script to cut and reassemble, use an archive program which can handle that automatically, or—more likely—format the USB drive to not be FAT32. I have a 160GB USB HD formatted as ext3 and it works fine, even though it's starting to show its age by being too small. But if you only need to do this once or otherwise don't want to reformat, this works. | ||||
|
feedback
|