• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Calling Linux People: How to breakup large files

SnoopCat

Senior member
I have a big binary file ( 1.5 GB). I want to break this thing up into smaller files, like 3 files of 500mb each, and be able to easily reconstruct it back later to its 1.5 GB form

Anyone know the commands on how to do this... Im hoping I can do this without installing additional software
 
That's not a hardware problem...

I think you would use dd if=inputfile of=outputfile1 size=1024 count=500M
then the same with skip=500M and 1000M. im not sure about size, that might be called something else. Others confirm?
 
Back
Top