4.2GB File
Seriously, how long does it take a tech-savvy person such as myself to copy a 4.2GB file from one partition to another? 5 hours. But considering that I learned something, it was well worth it.
Here’s what I discovered won’t work:
- I can’t write directly to NTFS from Fedora, which is understandable as NTFS is by far the largest, yet undocumented, project ever reversed-engendered.
- FAT32 has a size limit of 4GB, so using my iPod wasn’t an option. The file was already compressed, otherwise I might have been able to get it down enough with bzip2.
- Just like FAT32, it is not possible to burn a file over 4GB to a DVD-RW.
- Uploading it to my server and redownloading it wasn’t possible as Apache will commit seppuku if you try to serve files larger then 2GB. It seems to be a 32bit limitation resulting in a 403 Forbidden error message.
Not wanting to go out of my way and install Samba or a FTP server I figured I’ll split the files into 1GB chucks and recombine them with the Windows Command Line.
$ split -b 1024m bigfile.img
I copied the pieces to Windows using one of the above methods, then started MSDOS cmd.exe and combined them.
> copy /b xaa + xab + xac + xad + xae bigfile.img
February 17th, 2007 at 10:47 pm
YOUR SITE JUST GOT FUCKING WII’D! On a sidenote, Oooo, badass 64-bit user having trouble with his Windows shit XD
February 18th, 2007 at 12:25 am
And just to think I could have avoided this entire problem if my server was 64bit. :P
April 26th, 2007 at 5:36 pm
SCP will transfer a 4gb file no problem. I do it all the time (Windows pscp, ssh.com client, cygwin client, linux to linux).
Just fyi.