Jan 18, 2008 #1 tcspine IS-IT--Management Jan 2, 2008 31 US Hello, I'm looking for a way to have dd start on a particular block. I need it to start on block 14,329,980 and end on block 28,659,897 How can I use the command to do this?
Hello, I'm looking for a way to have dd start on a particular block. I need it to start on block 14,329,980 and end on block 28,659,897 How can I use the command to do this?
Jan 18, 2008 #2 zeland IS-IT--Management Aug 19, 2002 569 MY Have you tried this: Code: dd if=[some_device] of=[some_other_device] bs=[size_of_block] skip=14329979 count=14329918 --== Anything can go wrong. It's just a matter of how far wrong it will go till people think its right. ==-- Upvote 0 Downvote
Have you tried this: Code: dd if=[some_device] of=[some_other_device] bs=[size_of_block] skip=14329979 count=14329918 --== Anything can go wrong. It's just a matter of how far wrong it will go till people think its right. ==--
Jan 18, 2008 Thread starter #3 tcspine IS-IT--Management Jan 2, 2008 31 US It looks like it probably will. Thank you. Upvote 0 Downvote