Results 1 to 10 of 12
Running Fedora 5
We have a box with a raid 0. There isn't a physical raid card, so it's most likely a software raid. What would be the best way ...
- 03-25-2010 #1
Backing up a Linux raid
Running Fedora 5
We have a box with a raid 0. There isn't a physical raid card, so it's most likely a software raid. What would be the best way to do a bare metal backup on this machine? Or, would it be easier to un-raid the box and then do a backup?
Thanks in advance.
- 03-25-2010 #2
you can't just un-raid it to do a backup. what does your file system look like?
Code:df -h
linux user # 503963
- 03-25-2010 #3
thanks for the reply.
The BIOS said that it was a raid 0Code:Filesystem Size Used Avail Use% Mounted on /dev/mapper/VolGroup00-LogVol00 108G 34G 68G 34% / /dev/sda1 99M 16M 79M 17% /boot tmpfs 218M 0 218M 0% /dev/shm
- 03-25-2010 #4
i'd use dd, or something like this.
cloning logical volume with dd - LinuxQuestions.orglinux user # 503963
- 03-25-2010 #5
But wouldn't we need to clone it to a raid setup?
- 03-25-2010 #6
actually maybe you should use Clonezilla
you may or may not have troubles. your system is set up with logical volumes. i've always had trouble in past with backing up/restoring logical volumes.
are you doing like a live migration or what exactly?linux user # 503963
- 03-25-2010 #7
we'd like to do a live migration. Knoppix with G4L didn't work and PartedMagic with G4L would work but would only let us copy one drive at a time - it was seeing two physical disks but should have only been seeing one. We'd like to do a live backup (but ultimately don't have to) but clonezilla doesn't support that currently.
edit: Clonezilla doesn't support software raids
- 03-26-2010 #8Just Joined!
- Join Date
- Mar 2010
- Location
- Grand Rapids, MI
- Posts
- 15
Some motherboards have basic raid capabilities, so it may have hardware raid (if the bios says raid 0, then it probably does). To be sure, check md (run: cat /proc/mdstat ) and LVM setup (run: pvs).
What are you planning to back this up to - another server via local network, external disk drive, cloud storage?
- 03-26-2010 #9
/proc/mdstat
Personalities :
unused devices: <none>
is pvs a command? must not be installed and I don't want to necessarily install it with a five-year-old live machine.
I'd like to just back up everything to one external hard drive, but G4L was showing me two 120gb hard drives.
- 03-26-2010 #10Just Joined!
- Join Date
- Mar 2010
- Location
- Grand Rapids, MI
- Posts
- 15
So there's nothing in mdstat, which means no software raid using the multiple device driver.
pvs is part of the LVM2 package, I think you're still running LVM1. How about running: pvdisplay -m? (or maybe without the -m) I'm trying to get the list of disks involved in the LVM / Volume group.
Do you have lshw installed ( run: lshw -class disk -class storage )?


Reply With Quote
