Showing posts with label FSArchiver. Show all posts
Showing posts with label FSArchiver. Show all posts

Thursday, July 19, 2012

Backup and restore Mageia2 system with FSArchiver

Download the latest version of System Rescuecd and burn into CD
Run the CD
fsarchiver probe (check the partitions)
mount -t ext4 /dev/sda7 /mnt/backup (this is to mount the partition in my hard disk for storing the backup)

fsarchiver  -j2 -o savefs /mnt/backup/mageia2.fsa /dev/sda1 (archive) (j2 means cpu with 2 core)

fsarchiver restfs /mnt/backup/mageia2.fsa id=0,dest=/dev/sda1 (restore)

Thursday, August 19, 2010

Use fsarchiver to backup Mandriva Linux system

I am using Mandriva Linux and I tried many ways to backup my system. Finally I found this good backup software - Fsarchiver.
Fsarchiver  is included in the System Rescue CD. Download the iso and burn it to a CD.

mount -t ext4 /dev/sda7 /mnt/backup (this is to mount the partition in my hard disk for storing the backup)

fsarchiver  -j2 -o savefs /mnt/backup/mandriva2010spring.fsa /dev/sda1 (archive)

fsarchiver restfs /mnt/backup/mandriva2010spring.fsa id=0,dest=/dev/sda1 (restore)