Linux Debian 5 - Live system backup

11ben11

Inactive User
Joined
Jun 6, 2011
Messages
7
Reaction score
2
Hi All,

Can anyone make good suggestions for either paid of open source software to allow a backup of a physical Debian 5 server to a virtualised environment.
VMWare P2V converter was tried however upon receation of new machine, several components would not run.

Thanks
 
You have a couple of options.

redobackup click this link-> Redo Backup Bare Metal Restore Solution GUI Backup Open Source GPL Recovery

clonezilla

dd (very easy to use:
dd if=/dev/sda of=/dev/sdb
or dd if=/dev/sda of=/home/user/sda-image.dd

remember! with dd the partition sizes on restore must be same or bigger
to restore dd if=/home/user/sda-image.dd of=/dev/sda
where if is "input file" and of is "output file" ... dd can backup/restore to/from
partitions or files, it is a sector-by-sector copy

rsync


good luck
 
After migration you have to check /etc/udev/rules.d/70-...network... because there is the assignment of MAC addresses to eth-Numbers. Easiest way to get rid is to out-comment the entries there and reboot. So the new MAC addresses get assigned to eth0, eth1, ...
 
Back
Top