I need to make a (preferably) mountable image of an 80GB Hdd, and store it on another hard drive. Is there some way that I can do this without losing data?
Thanks for the answers I've received so far. The system in question cannot be used right now due to a problem with the power button :( [ugh!], but the information will really be useful =)! Thanks to all who answered so far, if anyone else wants to give me some tips I'll leave this open for a bit, as I still have not yet been able to clone the drive.
Use
dd
(replace sda1 with the partition you want to save):This will make a mountable image of a partition. Just be aware that this could take a while, and the image will have the size of the partition, not the files on it. In your case this would be 80GB. If you compress the image it should be about the size of the used space of your hdd.
Refer to DriveImaging: Creating Disc Images Using dd for a more comprehensive explanation.
imaging through LAN
on the backup machine run:
on source machine run:
Remastersys is a program that can create backups of your entire hard drive and then save it to a LiveCD, for example. You can also use it to create a custom Ubuntu distribution. It has a CLI and a GUI, so take your pick. In the GUI, choose the first option, Backup.
To install it,open Software center Then Edit -> Software Sources -> Other software (Tab) and click add and paste
Now close the software sources window and wait for repos to be refreshed and install remastersys.
My preferred method is to use a CloneZilla live CD. Download the .iso, burn it to disk with Brasero, put it into the machine you want to image, reboot, attach the destination drive, and follow the prompts. Be cautious when using dd, it's a very low level tool and mistakes can destroy data easily. If you want to make a byte-for-byte copy of an image, select CloneZilla's partition-to-partition option.
The simplest method is to use dd but the common complaint is that dd gives no progress bar when copying a large disk. You can use pipe viewer (pv) in conjunction with dd to show a progress bar and the ETA to completion. Install pv with
The drive that you are copying does not need to be mounted, and if you are recovering data from a damaged drive it is a good idea if it is not mount in read/write mode. Anything you do to the drive has the potential to overwrite deleted data or to cause further damage to the file system. The point of making a bit copy at this point is to enable recovery without putting the data at further risk.
Two things you will need to know before proceeding are the device name of the drive you are copying and its real size. Both of these can be found by issuing the command
which will display the drives attached to the system and their size in MiB.
In its simplest for the command for copying the disk to the file rescue.dd in the current directory is:
where /dev/sdx will need to be changed to the actual device name that you are copying. You may need to change the ownership of rescue.dd since it will be owned by root.
To get a handy progress bar and the ETA to completion, pipe the dd command through pv:
where /dev/sdX is the device name of the drive you want to copy and 99999 is the size of the device in MiB (not MB). Your user will own the file rescue.dd since the second invocation of dd which writes the output file is owned by your user, not root. Data display will be average data rate, a progress bar, %completed, and ETA to completion.
If you want to see progress, and also don't mind the command line, PV is your friend. I'm trying out Ubuntu MATE on my Raspberry Pi 2, and I wanted to backup my SD card and write the new one, but I hate running a big IO without knowing what's going on. This is what worked most quickly:
Restoring was just as easy
In all cases what's going on is
pv
is taking the input file/device and spamming it to stdout, while providing a progress report to stderr. Then, xz or bzip2 is taking stdin from the pipe (the stdout of the previous command) and acting as a filter. The output redirect lays the file out to the device or image file.I don't know that it's operating with blocks at all, but I suspect Linux is doing all my buffering for me, and reading/writing data by the block at the hardware level.
In that vein, is there a big advantage to using dd? I can see if we were reading or writing specific parts of a disk (e.g., if you want to extract a partition from an image, having ripped the endpoints off fdisk or parted), but for spamming a whole disk, I really prefer the simpler command.