0

I've tried clonezilla live cd, and I got an image but in a kind of folder. I would need an .img file or something because afterwards I will use some images together, but that is other story.

I also used dd if=/dev/sda of=~/disk1.img but it doesn't finish the image because the disk has 500GB and the image just about 100MB the first time and 2GB the second time, so I think that stops before finish for any reason I'm not aware of.

Do you know any way of doing an image of a disk?

8
  • Questions asking us to recommend or find a tool, library or favourite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Commented Feb 7, 2014 at 22:15
  • I don't think that I'm asking that. I just want to create an image and I don't know how to do it. Should I change the way of asking this question? Commented Feb 7, 2014 at 22:21
  • "free software if it is possible" This is you asking that. Commented Feb 7, 2014 at 22:26
  • If the problem was that, it is already resolved! Commented Feb 7, 2014 at 22:30
  • This question is off-topic for Stack Overflow because it's not about programming. You could try asking on Super User, but be aware that product recommendations are off-topic on every StackExchange site. Commented Feb 7, 2014 at 22:46

1 Answer 1

0

Try this command and options to avoid the process to stop when it find some bad sectors

dd conv=noerror,sync if=<whatever> of=<whatever> 

dd OPTION

conv=CONVS convert the file as per the comma separated symbol list

Each CONV symbol may be:

noerror continue after read errors

sync pad every input block with NULs to ibs-size; when used with block or unblock, pad with spaces rather than NULs


More info Man dd command

2
  • What is this? it is a part of a command, or part of dd? Commented Feb 8, 2014 at 19:30
  • 1
    @Joe yes dd conv=noerror,sync if=<whatever> of=<whatever> Commented Feb 8, 2014 at 19:32

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.