I have a linux server, and i want to make an image of the whole drive in real-time, like acronis does.
|
feedback
|
|
I use LVM religiously. It makes filesystem management so much easier...if you use lvm there's a tutorial here: http://www.howtoforge.com/linux_lvm_snapshots | |||
|
feedback
|
|
LVM is a good choice. LVM snapshot can be created in real time by -s when using lvcreate: http://fclose.com/p/linux/man/8-lvcreate/#lbAE For example, we can create a 2GB snapshot of lv_root by:
Then we can dd the snapshot out (this cost time):
| ||||
|
feedback
|
ddon the /dev/hdX and get an image of the hard drive. Very easy to do and very easy to put back (just change the if and of options around basically) – g19fanatic Dec 7 '10 at 12:27