I'm looking for a way to compress a large file (~10GB) into several files that wont exceed 150MB each.
Any thoughts?
|
I'm looking for a way to compress a large file (~10GB) into several files that wont exceed 150MB each. Any thoughts? | ||||
feedback
|
This question came from our site for professional and enthusiast programmers.
Compress single fileThis will compress file /path/to/your/large/file and creates many files with the prefix compressed.gz in the current directory, each file with a maximum size of 150000000 bytes:
Uncompress single fileTo uncompress the file resulting in the uncompressed file "/path/to/decrompressed/file" compressed using the command above use:
| |||
|
feedback
|
|
split [OPTION] [INPUT [PREFIX] - split a file into pieces
| ||||
|
feedback
|