How to split large files on Linux


pizza

Have you ever needed to split a file into several parts? Today I made a VirtualBox Appliance which sizes 2.8 GB but I  have a 2 GB (1.8 Gb) pendrive. So, what can I do?…piece of cake, to use split and cat commands:

Split

Let’s say you want to split the file Draco.vdmk (a VirtualBox disk) into 1.5 Gb smaller parts, then just type:

split -b 1500m Draco.vmdk

Cat

In order to put thing together just use:

cat x* > Draco.vmdk

References

Artículos relacionados:

  1. Reversing order of PDF files It happened I downloaded a study guide in PDF...
  2. Montando sistemas de archivos en Linux Sorry, this entry is only available in Español. ...
  3. Adding subtitles to avi files We saw on previous posts how to convert video files...
  4. Making less read non-text files I always tell my students how nice is less...
  5. Running Windows apps on Linux If you need to run a Windows application but you...

  1. No comments yet.
(will not be published)

Switch to our mobile site