I want to upload a few big dmgs and so need to split them.
Any recommendations for cheap or free apps that will do this?
Or within Mac OSX - a tutorial?
Thanks.
Im talking anything from 600mb to 5gb sized files.
And I want to upload to my MobileMe (and some to public upload service.)
Want to clear my hard drive and i consider offline storage/mobileme as my techno-loft, the place you put stuff you dont want to trash but also dont want to leave around cluttering the place up.
And googlemail/docs is a good idea for extra space - 7gb free storage! Thanks.
hdiutil convert /location/of/your.dmg -format UDCO -o /output/location/of/converted.dmg
hdiutil segment -o base_name_of_segments -segmentSize 100M /output/folder/of/segments/
UPDATE: I've found a solution for you, but I need to write up the instructions.
I was from here: http://tekkie.flashbit.net/mac-os/how-to-split-dmg-into-segments
If the disk image isn't read-only: you need to run convert it to read-only using this:
Code:hdiutil convert /location/of/your.dmg -format UDCO -o /output/location/of/converted.dmg
When that's done run this:
That will output 100MB segments. You can change this to K for kilobytes, G for gigabytes etc. And the number part is obvious.Code:hdiutil segment -o base_name_of_segments -segmentSize 100M /output/folder/of/segments/
hdiutil segment -o base_name_of_segments -segmentSize 100M /location/of/image.dmg