LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   Splitting dd images (https://www.linuxquestions.org/questions/linux-software-2/splitting-dd-images-466787/)

Codegen 07-23-2006 09:54 AM

Splitting dd images
 
I know there's a way to split images with dd. I don't know what the command is, though.

Can somebody give me a hand?

The problem I'm having is that Samba has a 2GB limit. The image would probably be around ~2.1 GB (figures).

ugenn 07-23-2006 10:04 AM

there is the split command. man split.

osor 07-23-2006 10:11 AM

You count use the count functionality along with skip. For example:

Code:

$ dd if=bigfile of=smallfile1 count=1048576
$ dd if=bigfile of=smallfile2  skip=1048576


Codegen 07-23-2006 10:13 AM

Shit, I just confused 'quote' with 'report'
Mods, ignore the report.

I'll try the skip thingy.


All times are GMT -5. The time now is 03:12 PM.