split the file into 500MB chunks with:
nohup nice split --line-bytes=500m foo.tar.gz foo_ &rejoined the file with:
nohup nice cat foo_a* > foo_FULL.tar.gz &Actually found the reason, it seems you can't write a 5GB file to a vfat.
Vinay Jethava's musings
nohup nice split --line-bytes=500m foo.tar.gz foo_ &
nohup nice cat foo_a* > foo_FULL.tar.gz &
No comments:
Post a Comment