Selecting logical volumes and MD devices in command lineLet’s assume that the system has four physical disks: Disk 1, Disk 2, Disk 3 and Disk 4.
A list of a volumes can be obtained with the following command: trueimagecmd --list Num Partition Flags Start Size Type The logical volume, DYN1, occupies basic volumes 2-2 and 4-2. The RAID-1 volume, DYN2, occupies basic volumes 2-1 and 4-1. To back up the logical DYN1 volume, run the following command (here, the name of the backup is assumed to be /home/backup.tib): trueimagecmd --partition:dyn1 --filename:/home/backup.tib --create To back up the RAID-1 volume DYN2, run the following command: trueimagecmd --partition:dyn2 --filename:/home/backup.tib --create To back up all three hard disks with volumes, select the volumes 1-1, 1-2, 1-3, DYN1 and DYN2: trueimagecmd --partition:1-1,1-2,1-3,dyn1,dyn2 --filename:/home/backup.tib --create If you select Disk 3, volume 2-1 or volume 2-2, the program will create a raw (sector-by-sector) backup. |