zzkozak - 2012-04-29

here is my results.txt:

                  Boot Info Script 0.61      [1 April 2012]

============================= Boot Info Summary: ===============================

 => Grub2 (v1.97-1.98) is installed in the MBR of /dev/sda and looks at sector
    1 of the same hard drive for core.img. core.img is at this location and
    looks for (md1)/boot/grub on this drive.
 => Grub2 (v1.97-1.98) is installed in the MBR of /dev/sdb and looks at sector
    1 of the same hard drive for core.img. core.img is at this location and
    looks for (md1)/boot/grub on this drive.

sda1: __________________________________________________________________________

    File system:       linux_raid_member
    Boot sector type:  -
    Boot sector info:

sda2: __________________________________________________________________________

    File system:       swap
    Boot sector type:  Unknown
    Boot sector info:

sda3: __________________________________________________________________________

    File system:       linux_raid_member
    Boot sector type:  -
    Boot sector info:

sdb1: __________________________________________________________________________

    File system:       linux_raid_member
    Boot sector type:  -
    Boot sector info:

sdb2: __________________________________________________________________________

    File system:       swap
    Boot sector type:  Unknown
    Boot sector info:

sdb3: __________________________________________________________________________

    File system:       linux_raid_member
    Boot sector type:  -
    Boot sector info:

md3: ___________________________________________________________________________

    File system:       LVM2_member
    Boot sector type:  -
    Boot sector info:

============================ Drive/Partition Info: =============================

Drive: sda _____________________________________________________________________

Disk /dev/sda: 1000.2 GB, 1000204886016 bytes
64 heads, 32 sectors/track, 953869 cylinders, total 1953525168 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes

Partition  Boot  Start Sector    End Sector  # of Sectors  Id System

/dev/sda1               2,048    15,628,287    15,626,240  fd Linux raid autodetect
/dev/sda2          15,628,288    39,067,647    23,439,360  82 Linux swap / Solaris
/dev/sda3          39,067,648 1,953,523,711 1,914,456,064  fd Linux raid autodetect

Drive: sdb _____________________________________________________________________

Disk /dev/sdb: 1000.2 GB, 1000204886016 bytes
64 heads, 32 sectors/track, 953869 cylinders, total 1953525168 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes

Partition  Boot  Start Sector    End Sector  # of Sectors  Id System

/dev/sdb1               2,048    15,628,287    15,626,240  fd Linux raid autodetect
/dev/sdb2          15,628,288    39,067,647    23,439,360  82 Linux swap / Solaris
/dev/sdb3          39,067,648 1,953,523,711 1,914,456,064  fd Linux raid autodetect

"blkid" output: ________________________________________________________________

Device           UUID                                   TYPE       LABEL

/dev/mapper/vg00-home c2ae46f2-65a4-40ca-a2b3-74030dcb8563   xfs
/dev/mapper/vg00-srv 9b11ad5b-eb4e-4297-b223-52703f5763bd   xfs
/dev/mapper/vg00-usr aa8e88cf-01d4-4601-84bd-fd406af9289f   xfs
/dev/mapper/vg00-var 5a709fea-265f-4e70-a270-9b6bc2e02f19   xfs
/dev/md1         ffdc302a-ea91-4a23-b6aa-b588f0ce0362   ext3
/dev/md3         Q3zKA3-poLr-W8OW-NdvQ-aMtc-3d5Z-oehzDa LVM2_member
/dev/sda1        d50f45e0-69ea-3dab-776c-2c25004bd7b2   linux_raid_member
/dev/sda2        8ffde904-93aa-4ebf-b1ae-03d09ba7c102   swap
/dev/sda3        f72606bb-d365-b9f6-776c-2c25004bd7b2   linux_raid_member
/dev/sdb1        d50f45e0-69ea-3dab-776c-2c25004bd7b2   linux_raid_member
/dev/sdb2        0e331aed-b56b-4619-8c13-69a40b9b5b18   swap
/dev/sdb3        f72606bb-d365-b9f6-776c-2c25004bd7b2   linux_raid_member

========================= "ls -R /dev/mapper/" output: =========================

/dev/mapper:
control
vg00-home
vg00-srv
vg00-usr
vg00-var

================================ Mount points: =================================

Device           Mount_Point              Type       Options

/dev/mapper/vg00-home /home                    xfs        (rw,usrquota)
/dev/mapper/vg00-srv /srv                     xfs        (rw,usrquota)
/dev/mapper/vg00-usr /usr                     xfs        (rw)
/dev/mapper/vg00-var /var                     xfs        (rw,usrquota)
/dev/md1         /                        ext3       (rw)

======================== Unknown MBRs/Boot Sectors/etc: ========================

Unknown BootLoader on sda2

00000000  5a 5a 5a 5a 5a 5a 5a 5a  5a 5a 5a 5a 5a 5a 5a 5a  |ZZZZZZZZZZZZZZZZ|
*
00000200

Unknown BootLoader on sdb2

00000000  5a 5a 5a 5a 5a 5a 5a 5a  5a 5a 5a 5a 5a 5a 5a 5a  |ZZZZZZZZZZZZZZZZ|
*
00000200

========= Devices which don't seem to have a corresponding hard drive: =========

hda hdb hdc

=============================== StdErr Messages: ===============================

mdadm: cannot open /dev/md/1: No such file or directory
mdadm: cannot open /dev/md/1: No such file or directory

#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
  load_env
fi
set default="0"
if [ "${prev_saved_entry}" ]; then
  set saved_entry="${prev_saved_entry}"
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
  fi
}

function load_video {
  insmod vbe
  insmod vga
  insmod video_bochs
  insmod video_cirrus
}

terminal_input console
terminal_output console
set timeout=5
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=cyan/blue
set menu_color_highlight=white/blue
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
menuentry 'Debian GNU/Linux, with Linux 2.6.32-5-amd64' --class debian --class gnu-linux --class gnu --class os {
        insmod raid
        insmod mdraid
        insmod part_msdos
        insmod part_msdos
        insmod ext2
        set root='(md1)'
        search --no-floppy --fs-uuid --set ffdc302a-ea91-4a23-b6aa-b588f0ce0362
        echo    'Loading Linux 2.6.32-5-amd64 ...'
        linux   /boot/vmlinuz-2.6.32-5-amd64 root=/dev/md1 ro  quiet
        echo    'Loading initial ramdisk ...'
        initrd  /boot/initrd.img-2.6.32-5-amd64
}
menuentry 'Debian GNU/Linux, with Linux 2.6.32-5-amd64 (recovery mode)' --class debian --class gnu-linux --class gnu --class os {
        insmod raid
        insmod mdraid

        insmod part_msdos
        insmod part_msdos
        insmod ext2
        set root='(md1)'
        search --no-floppy --fs-uuid --set ffdc302a-ea91-4a23-b6aa-b588f0ce0362
        echo    'Loading Linux 2.6.32-5-amd64 ...'
        linux   /boot/vmlinuz-2.6.32-5-amd64 root=/dev/md1 ro single
        echo    'Loading initial ramdisk ...'
        initrd  /boot/initrd.img-2.6.32-5-amd64
}
### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###

### BEGIN /etc/grub.d/41_custom ###
if [ -f  $prefix/custom.cfg ]; then
  source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###

 Thanks in advance for any help!
Marcin