LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   multiple volumes (https://www.linuxquestions.org/questions/linux-software-2/multiple-volumes-875487/)

digilinux 04-17-2011 02:16 PM

multiple volumes
 
Hello,

i want to create multiple cd's containing the data of one tar.gz file
of course i can use data dump (the dd command) to cut the tar.gz into
700 MB pieces.
yet then i must calculate the exact location where to cut, and use the skip, seek and count parameters to proceed.

Does anybody here know, software that automatically creates 700 MB parts of a single file?

peace,

digi

Snark1994 04-17-2011 02:55 PM

Yeah :) try
Code:

split -b 700MB <filename> myISO
This will produce myISOaa, myISOab, myISOac, etc. in 700MB chunks (though I would check whether you really want megabytes, MB, or mebibytes, M)

TobiSGD 04-17-2011 02:57 PM

You should have a look at the split command.


All times are GMT -5. The time now is 06:22 AM.