Changes between Initial Version and Version 1 of kiyoshi-recovery-2010-02


Ignore:
Timestamp:
Feb 8, 2010, 9:09:28 PM (15 years ago)
Author:
Jamie McClelland
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • kiyoshi-recovery-2010-02

    v1 v1  
     1= Kiyoshi recovery 2010-02 =
     2
     3This page documents the planned steps for the Kiyoshi disk recovery (see #2828).
     4
     5 * Install debirf image - this will allow us to boot into a debian installation loaded completely in memory giving us full access to all underlying disks
     6 * After booting into debirf:
     7  * Prepare the disks so we can access them:
     8   * Initialize the RAID arrays
     9{{{
     10mdadm ....
     11}}}
     12   * Decrypt the RAID arrays
     13{{{
     14cryptsetup luksOpen /dev/md1 crypt_md1
     15cryptsetup luksOpen /dev/md2 crypt_md2
     16}}}
     17   * Scan for logical volumes
     18{{{
     19vgscan --mknodes
     20vgchange -aly
     21}}}
     22  * Move all logical volumes to sdc2
     23   * Find logical volumes with:
     24{{{
     25lvs
     26}}}
     27   * Examine to figure out which ones are on which physical volumes
     28{{{
     29lvdisplay -m vg_kiyoshi0/<logical-volume-name>
     30}}}
     31   * Move with:
     32{{{
     33pvmove --verbose vg_kiyoshi0/<logical-volume-name> <path/to/old/> </dev/sdc>
     34}}}