I have a 5 GB file on my MAC and can not copy it on flash memory or external hard formatted with FAT. How I can split it to some smaller files

link|improve this question
Look into RAR tools. – Alex Reynolds Nov 28 '11 at 11:37
I am looking for a free solution. – Abbas Mousavi Nov 28 '11 at 11:40
feedback

migrated from stackoverflow.com Nov 28 '11 at 12:06

This question came from our site for professional and enthusiast programmers.

2 Answers

up vote 4 down vote accepted

You can use this command on the shell:

split -b YOUR_EXPECTED_SIZES YOUR_FILE_NAME PATTERN_NAME_AS_OUTPUT

and for recovering it

cat SPITED_FILES_AS_LIST > NEW_FILE

I hope it be useful for you!

link|improve this answer
feedback

Using hard disk utility you can create a sparse bundle on your fat drive. Inside this also larger files are allowed - the system will take care of the rest.

You can also format the stick with HFS or if you need it also on Windows install NTFS-3G and format the drive NTFS

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.