PDA

View Full Version : [ubuntu] Win 7 not in GRUB after Lucid install



G-forze
May 5th, 2010, 07:57 PM
Just got my last problem solved, right on to the next one! This one should be far easier for someone with the skills to point out where I fail.

I recently installed Ubuntu 10.04 on my new hardware, before which I also installed Windows 7. Doing it that way, I was hoping Win7 would appear automatically in GRUB as it usually does, but not this time. In my GRUB is my new Ubuntu install and an old one (9.10) that I never got around to using before my old hardware gave in.

GRUB2 file looks like this:



#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by /usr/sbin/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 recordfail {
set recordfail=1
if [ -n ${have_grubenv} ]; then if [ -z ${boot_once} ]; then save_env recordfail; fi; fi
}
insmod raid
insmod mdraid
insmod ext2
set root='(md0)'
search --no-floppy --fs-uuid --set 02320179-41b4-4315-b547-68061b49f3d0
if loadfont /usr/share/grub/unicode.pf2 ; then
set gfxmode=640x480
insmod gfxterm
insmod vbe
if terminal_output gfxterm ; then true ; else
# For backward compatibility with versions of terminal.mod that don't
# understand terminal_output
terminal gfxterm
fi
fi
insmod raid
insmod mdraid
insmod ext2
set root='(md0)'
search --no-floppy --fs-uuid --set 02320179-41b4-4315-b547-68061b49f3d0
set locale_dir=($root)/boot/grub/locale
set lang=en
insmod gettext
if [ ${recordfail} = 1 ]; then
set timeout=-1
else
set timeout=10
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
menuentry 'Ubuntu, with Linux 2.6.32-21-generic' --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod raid
insmod mdraid
insmod ext2
set root='(md0)'
search --no-floppy --fs-uuid --set 02320179-41b4-4315-b547-68061b49f3d0
linux /boot/vmlinuz-2.6.32-21-generic root=UUID=02320179-41b4-4315-b547-68061b49f3d0 ro acpi=off noapic nolapic quiet splash
initrd /boot/initrd.img-2.6.32-21-generic
}
menuentry 'Ubuntu, with Linux 2.6.32-21-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod raid
insmod mdraid
insmod ext2
set root='(md0)'
search --no-floppy --fs-uuid --set 02320179-41b4-4315-b547-68061b49f3d0
echo 'Loading Linux 2.6.32-21-generic ...'
linux /boot/vmlinuz-2.6.32-21-generic root=UUID=02320179-41b4-4315-b547-68061b49f3d0 ro single acpi=off noapic nolapic
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-2.6.32-21-generic
}
menuentry 'Ubuntu, with Linux 2.6.31-20-generic' --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod raid
insmod mdraid
insmod ext2
set root='(md0)'
search --no-floppy --fs-uuid --set 02320179-41b4-4315-b547-68061b49f3d0
linux /boot/vmlinuz-2.6.31-20-generic root=UUID=02320179-41b4-4315-b547-68061b49f3d0 ro acpi=off noapic nolapic quiet splash
initrd /boot/initrd.img-2.6.31-20-generic
}
menuentry 'Ubuntu, with Linux 2.6.31-20-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod raid
insmod mdraid
insmod ext2
set root='(md0)'
search --no-floppy --fs-uuid --set 02320179-41b4-4315-b547-68061b49f3d0
echo 'Loading Linux 2.6.31-20-generic ...'
linux /boot/vmlinuz-2.6.31-20-generic root=UUID=02320179-41b4-4315-b547-68061b49f3d0 ro single acpi=off noapic nolapic
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-2.6.31-20-generic
}
### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_memtest86+ ###
menuentry "Memory test (memtest86+)" {
insmod raid
insmod mdraid
insmod ext2
set root='(md0)'
search --no-floppy --fs-uuid --set 02320179-41b4-4315-b547-68061b49f3d0
linux16 /boot/memtest86+.bin
}
menuentry "Memory test (memtest86+, serial console 115200)" {
insmod raid
insmod mdraid
insmod ext2
set root='(md0)'
search --no-floppy --fs-uuid --set 02320179-41b4-4315-b547-68061b49f3d0
linux16 /boot/memtest86+.bin console=ttyS0,115200n8
}
### END /etc/grub.d/20_memtest86+ ###

### BEGIN /etc/grub.d/30_os-prober ###
menuentry "Ubuntu, Linux 2.6.31-19-generic (on /dev/sdd2)" {
insmod ext2
set root='(hd3,2)'
search --no-floppy --fs-uuid --set f574912e-fe34-45b9-9ecd-77822a2850d7
linux /boot/vmlinuz-2.6.31-19-generic root=UUID=f574912e-fe34-45b9-9ecd-77822a2850d7 ro quiet splash
initrd /boot/initrd.img-2.6.31-19-generic
}
menuentry "Ubuntu, Linux 2.6.31-19-generic (recovery mode) (on /dev/sdd2)" {
insmod ext2
set root='(hd3,2)'
search --no-floppy --fs-uuid --set f574912e-fe34-45b9-9ecd-77822a2850d7
linux /boot/vmlinuz-2.6.31-19-generic root=UUID=f574912e-fe34-45b9-9ecd-77822a2850d7 ro single
initrd /boot/initrd.img-2.6.31-19-generic
}
menuentry "Ubuntu, Linux 2.6.31-14-generic (on /dev/sdd2)" {
insmod ext2
set root='(hd3,2)'
search --no-floppy --fs-uuid --set f574912e-fe34-45b9-9ecd-77822a2850d7
linux /boot/vmlinuz-2.6.31-14-generic root=UUID=f574912e-fe34-45b9-9ecd-77822a2850d7 ro quiet splash
initrd /boot/initrd.img-2.6.31-14-generic
}
menuentry "Ubuntu, Linux 2.6.31-14-generic (recovery mode) (on /dev/sdd2)" {
insmod ext2
set root='(hd3,2)'
search --no-floppy --fs-uuid --set f574912e-fe34-45b9-9ecd-77822a2850d7
linux /boot/vmlinuz-2.6.31-14-generic root=UUID=f574912e-fe34-45b9-9ecd-77822a2850d7 ro single
initrd /boot/initrd.img-2.6.31-14-generic
}
### 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 ###I looked for some help online but just can't seem to get it right. I was hoping someone could point me in the right direction. I made a GRUB menuitem file named 11_Windows in /etc/grub.d/ like so:



#! /bin/sh -e
echo “Adding Windows” >&2
cat << EOF
menuentry “Windows 7″ {
set root=(hd3,1)
chainloader +1
}
EOF
When I run "sudo update-grub" i get



@Stronghold:/etc/grub.d$ sudo update-grub
error: cannot seek `/dev/sdd'.
error: cannot seek `/dev/sdd'.
Generating grub.cfg ...
error: cannot seek `/dev/sdd'.
error: cannot seek `/dev/sdd'.
error: cannot seek `/dev/sdd'.
error: cannot seek `/dev/sdd'.
error: cannot seek `/dev/sdd'.
error: cannot seek `/dev/sdd'.
error: cannot seek `/dev/sdd'.
error: cannot seek `/dev/sdd'.
error: cannot seek `/dev/sdd'.
Found linux image: /boot/vmlinuz-2.6.32-21-generic
Found initrd image: /boot/initrd.img-2.6.32-21-generic
error: cannot seek `/dev/sdd'.
error: cannot seek `/dev/sdd'.
error: cannot seek `/dev/sdd'.
Found linux image: /boot/vmlinuz-2.6.31-20-generic
Found initrd image: /boot/initrd.img-2.6.31-20-generic
“Adding Windows”
Found memtest86+ image: /boot/memtest86+.bin
error: cannot seek `/dev/sdd'.
error: cannot seek `/dev/sdd'.
error: cannot seek `/dev/sdd'.
Found Ubuntu 9.10 (9.10) on /dev/sdd2
error: cannot seek `/dev/sdd'.
error: cannot seek `/dev/sdd'.
error: cannot seek `/dev/sdd'.
done
.. and the resulting GRUB file is what you see in the beginning of the post.

Windows 7 is installed on /dev/sdd1 while Lucid is installed on /dev/md1. The old Ubuntu (Karmic, not working) is installed on /dev/sdd2. The Win7 partition previously had a Win XP installation and Win 7 was working fine until I installed Ubuntu.

That's a long post... So, where do I go wrong? :)

Motherboard: Asus P7H55 Intel H55 LGA1156 ATX
Processor: Core i3 530
RAM: 4 Gb (2x 2Gb) DDR3 1066
Gfx: Asus ENGTS250 DK/DI/1GD3 nVidia GeForce GTS250 1GB
HDs: 2x Western Digital Caviar Green SATA II 1.5 Tb

kansasnoob
May 5th, 2010, 08:07 PM
So, if you can boot into Lucid, first run:


sudo update-grub

Wait for it to say "done". If that doesn't resolve your problem post the output of the Boot Info Script as described here:

http://bootinfoscript.sourceforge.net/

G-forze
May 5th, 2010, 08:28 PM
Seems lika quite a lot of "personal" information, but WTH...


Boot Info Script 0.55 dated February 15th, 2010

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

=> Grub 2 is installed in the MBR of /dev/sda and looks for (md0)/boot/grub.
=> Windows is installed in the MBR of /dev/sdb
=> Grub 2 is installed in the MBR of /dev/sdc and looks for (md0)/boot/grub.
=> Grub 2 is installed in the MBR of /dev/sdd and looks on the same drive in
partition #2 for /boot/grub.

sda1: __________________________________________________ _______________________

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

sda2: __________________________________________________ _______________________

File system: Extended Partition
Boot sector type: -
Boot sector info:

sda5: __________________________________________________ _______________________

File system:
Boot sector type: -
Boot sector info:
Mounting failed:
mount: unknown filesystem type ''

sda6: __________________________________________________ _______________________

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

sdb2: __________________________________________________ _______________________

File system:
Boot sector type: -
Boot sector info:
Mounting failed:
mount: unknown filesystem type ''
mount: unknown filesystem type ''

sdb3: __________________________________________________ _______________________

File system: Extended Partition
Boot sector type: -
Boot sector info:

sdb5: __________________________________________________ _______________________

File system: ntfs
Boot sector type: Windows XP
Boot sector info: According to the info in the boot sector, sdb5 starts
at sector 63.
Operating System:
Boot files/dirs:

sdb6: __________________________________________________ _______________________

File system: vfat
Boot sector type: Windows XP: Fat32
Boot sector info: According to the info in the boot sector, sdb6 starts
at sector 63.
Operating System:
Boot files/dirs:

sdb7: __________________________________________________ _______________________

File system: ntfs
Boot sector type: Windows XP
Boot sector info: According to the info in the boot sector, sdb7 starts
at sector 63.
Operating System:
Boot files/dirs:

sdb4: __________________________________________________ _______________________

File system: ntfs
Boot sector type: Windows XP
Boot sector info: No errors found in the Boot Parameter Block.
Operating System:
Boot files/dirs:

sdc1: __________________________________________________ _______________________

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

sdc2: __________________________________________________ _______________________

File system: Extended Partition
Boot sector type: -
Boot sector info:

sdc5: __________________________________________________ _______________________

File system:
Boot sector type: -
Boot sector info:
Mounting failed:
mount: unknown filesystem type ''
mount: unknown filesystem type ''
mount: unknown filesystem type ''

sdc6: __________________________________________________ _______________________

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

sdd1: __________________________________________________ _______________________

File system: ntfs
Boot sector type: Windows Vista/7
Boot sector info: No errors found in the Boot Parameter Block.
Operating System: Windows 7
Boot files/dirs: /Windows/System32/winload.exe

sdd2: __________________________________________________ _______________________

File system: ext4
Boot sector type: -
Boot sector info:
Operating System: Ubuntu 9.10
Boot files/dirs: /boot/grub/grub.cfg /etc/fstab /boot/grub/core.img

md1: __________________________________________________ _______________________

File system: ext4
Boot sector type: -
Boot sector info:
Operating System:
Boot files/dirs:

md0: __________________________________________________ _______________________

File system: ext4
Boot sector type: -
Boot sector info:
Operating System: Ubuntu 10.04 LTS
Boot files/dirs: /boot/grub/grub.cfg /etc/fstab /boot/grub/core.img

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

Drive: sda ___________________ __________________________________________________ ___

Disk /dev/sda: 1500.3 GB, 1500301910016 bytes
255 heads, 63 sectors/track, 182401 cylinders, total 2930277168 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes

Partition Boot Start End Size Id System

/dev/sda1 * 63 976,559,219 976,559,157 fd Linux raid autodetect
/dev/sda2 976,559,220 2,930,272,064 1,953,712,845 5 Extended
/dev/sda5 2,912,182,938 2,930,272,064 18,089,127 82 Linux swap / Solaris
/dev/sda6 976,559,346 2,912,182,874 1,935,623,529 fd Linux raid autodetect


Drive: sdb ___________________ __________________________________________________ ___

Disk /dev/sdb: 160.0 GB, 160041885696 bytes
255 heads, 63 sectors/track, 19457 cylinders, total 312581808 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes

Partition Boot Start End Size Id System

/dev/sdb2 33,559,785 35,648,234 2,088,450 82 Linux swap / Solaris
/dev/sdb3 35,648,235 268,414,019 232,765,785 f W95 Ext d (LBA)
/dev/sdb5 35,648,298 144,665,324 109,017,027 7 HPFS/NTFS
/dev/sdb6 146,769,903 155,171,834 8,401,932 b W95 FAT32
/dev/sdb7 155,171,898 268,414,019 113,242,122 7 HPFS/NTFS
/dev/sdb4 268,414,020 312,576,704 44,162,685 7 HPFS/NTFS


Drive: sdc ___________________ __________________________________________________ ___

Disk /dev/sdc: 1500.3 GB, 1500301910016 bytes
255 heads, 63 sectors/track, 182401 cylinders, total 2930277168 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes

Partition Boot Start End Size Id System

/dev/sdc1 * 63 976,559,219 976,559,157 fd Linux raid autodetect
/dev/sdc2 976,559,220 2,930,272,064 1,953,712,845 5 Extended
/dev/sdc5 2,912,182,938 2,930,272,064 18,089,127 82 Linux swap / Solaris
/dev/sdc6 976,559,346 2,912,182,874 1,935,623,529 fd Linux raid autodetect


Drive: sdd ___________________ __________________________________________________ ___

Disk /dev/sdd: 250.1 GB, 250059350016 bytes
255 heads, 63 sectors/track, 30401 cylinders, total 488397168 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes

Partition Boot Start End Size Id System

/dev/sdd1 * 63 41,945,714 41,945,652 42 SFS
/dev/sdd2 41,945,715 488,395,119 446,449,405 42 SFS


blkid -c /dev/null: __________________________________________________ __________

Device UUID TYPE LABEL

/dev/mapper/cryptswap1 5ed21eb6-0984-4713-911b-9bd5e23ecd14 swap
/dev/mapper/cryptswap2 72a23538-cb7f-4b87-ab77-649fde778c3e swap
/dev/mapper/cryptswap3 ca2a28af-259d-4e10-a78c-1183a7b78086 swap
/dev/md0 02320179-41b4-4315-b547-68061b49f3d0 ext4
/dev/md1 44d42c14-27f7-4567-bca0-e9b7003fc497 ext4
/dev/sda1 741935f4-ba83-d8eb-d931-459ff2935165 linux_raid_member
/dev/sda2: PTTYPE="dos"
/dev/sda6 03dc6aea-40ac-32d4-03e3-6aae86fa0413 linux_raid_member
/dev/sda: PTTYPE="dos"
/dev/sdb3: PTTYPE="dos"
/dev/sdb4 12C8F9DDC8F9BED3 ntfs Rollspel
/dev/sdb5 D04CDB684CDB47BC ntfs Musik
/dev/sdb6 1C0D-BC6E vfat DUAL
/dev/sdb7 22983E03983DD5CF ntfs Images
/dev/sdb: PTTYPE="dos"
/dev/sdc1 741935f4-ba83-d8eb-d931-459ff2935165 linux_raid_member
/dev/sdc2: PTTYPE="dos"
/dev/sdc6 03dc6aea-40ac-32d4-03e3-6aae86fa0413 linux_raid_member
/dev/sdc: PTTYPE="dos"
/dev/sdd1 ACEC8A2DEC89F1BE ntfs Win7
/dev/sdd2 f574912e-fe34-45b9-9ecd-77822a2850d7 ext4
/dev/sdd3 586AF09E6AF07A58 ntfs WinDisk
/dev/sdd4 08E46ECEE46EBD96 ntfs Spel
/dev/sdd5 84FC19D7FC19C3F8 ntfs Övrigt
/dev/sdd: PTTYPE="dos"

=============================== "ls -R /dev/mapper/" output: ===============================
/dev/mapper:
control
cryptswap1
cryptswap1_unformatted
cryptswap2
cryptswap2_unformatted
cryptswap3
cryptswap3_unformatted

============================ "mount | grep ^/dev output: ===========================

Device Mount_Point Type Options

/dev/md0 / ext4 (rw,errors=remount-ro)
/dev/md1 /home ext4 (rw)
/dev/sdd1 /media/Win7 fuseblk (rw,nosuid,nodev,allow_other,blksize=4096,default_ permissions)


=========================== sdd2/boot/grub/grub.cfg: ===========================

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

### BEGIN /etc/grub.d/00_header ###
if [ -s /boot/grub/grubenv ]; then
have_grubenv=true
load_env
fi
set default="0"
if [ ${prev_saved_entry} ]; then
saved_entry=${prev_saved_entry}
save_env saved_entry
prev_saved_entry=
save_env prev_saved_entry
fi
insmod ext2
set root=(hd0,2)
search --no-floppy --fs-uuid --set f574912e-fe34-45b9-9ecd-77822a2850d7
if loadfont /usr/share/grub/unicode.pf2 ; then
set gfxmode=640x480
insmod gfxterm
insmod vbe
if terminal_output gfxterm ; then true ; else
# For backward compatibility with versions of terminal.mod that don't
# understand terminal_output
terminal gfxterm
fi
fi
if [ ${recordfail} = 1 ]; then
set timeout=-1
else
set timeout=10
fi
### END /etc/grub.d/00_header ###

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

### BEGIN /etc/grub.d/10_linux ###
menuentry "Ubuntu, Linux 2.6.31-19-generic" {
recordfail=1
if [ -n ${have_grubenv} ]; then save_env recordfail; fi
set quiet=1
insmod ext2
set root=(hd0,2)
search --no-floppy --fs-uuid --set f574912e-fe34-45b9-9ecd-77822a2850d7
linux /boot/vmlinuz-2.6.31-19-generic root=UUID=f574912e-fe34-45b9-9ecd-77822a2850d7 ro quiet splash
initrd /boot/initrd.img-2.6.31-19-generic
}
menuentry "Ubuntu, Linux 2.6.31-19-generic (recovery mode)" {
recordfail=1
if [ -n ${have_grubenv} ]; then save_env recordfail; fi
insmod ext2
set root=(hd0,2)
search --no-floppy --fs-uuid --set f574912e-fe34-45b9-9ecd-77822a2850d7
linux /boot/vmlinuz-2.6.31-19-generic root=UUID=f574912e-fe34-45b9-9ecd-77822a2850d7 ro single
initrd /boot/initrd.img-2.6.31-19-generic
}
menuentry "Ubuntu, Linux 2.6.31-14-generic" {
recordfail=1
if [ -n ${have_grubenv} ]; then save_env recordfail; fi
set quiet=1
insmod ext2
set root=(hd0,2)
search --no-floppy --fs-uuid --set f574912e-fe34-45b9-9ecd-77822a2850d7
linux /boot/vmlinuz-2.6.31-14-generic root=UUID=f574912e-fe34-45b9-9ecd-77822a2850d7 ro quiet splash
initrd /boot/initrd.img-2.6.31-14-generic
}
menuentry "Ubuntu, Linux 2.6.31-14-generic (recovery mode)" {
recordfail=1
if [ -n ${have_grubenv} ]; then save_env recordfail; fi
insmod ext2
set root=(hd0,2)
search --no-floppy --fs-uuid --set f574912e-fe34-45b9-9ecd-77822a2850d7
linux /boot/vmlinuz-2.6.31-14-generic root=UUID=f574912e-fe34-45b9-9ecd-77822a2850d7 ro single
initrd /boot/initrd.img-2.6.31-14-generic
}
### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_memtest86+ ###
menuentry "Memory test (memtest86+)" {
linux16 /boot/memtest86+.bin
}
menuentry "Memory test (memtest86+, serial console 115200)" {
linux16 /boot/memtest86+.bin console=ttyS0,115200n8
}
### END /etc/grub.d/20_memtest86+ ###

### BEGIN /etc/grub.d/30_os-prober ###
menuentry "Windows XP Professional x64 Edition (on /dev/sda1)" {
insmod ntfs
set root=(hd0,1)
search --no-floppy --fs-uuid --set e2e4d52ce4d50427
drivemap -s (hd0) ${root}
chainloader +1
}
### 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 ###

=============================== sdd2/etc/fstab: ===============================

# /etc/fstab: static file system information.
#
# Use 'blkid -o value -s UUID' to print the universally unique identifier
# for a device; this may be used with UUID= as a more robust way to name
# devices that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0
# / was on /dev/sda2 during installation
UUID=f574912e-fe34-45b9-9ecd-77822a2850d7 / ext4 errors=remount-ro 0 1
# swap was on /dev/sdb2 during installation
UUID=bbb534d8-e8ed-4542-bb8c-be23cc8c27b9 none swap sw 0 0
/dev/scd0 /media/cdrom0 udf,iso9660 user,noauto,exec,utf8 0 0
/dev/fd0 /media/floppy0 auto rw,user,noauto,exec,utf8 0 0

=================== sdd2: Location of files loaded by Grub: ===================


22.1GB: boot/grub/core.img
26.0GB: boot/grub/grub.cfg
22.1GB: boot/initrd.img-2.6.31-14-generic
22.2GB: boot/initrd.img-2.6.31-19-generic
22.1GB: boot/vmlinuz-2.6.31-14-generic
22.2GB: boot/vmlinuz-2.6.31-19-generic
22.5GB: boot/vmlinuz-2.6.31-20-generic
22.2GB: initrd.img
22.1GB: initrd.img.old
22.2GB: vmlinuz
22.1GB: vmlinuz.old

=========================== md0/boot/grub/grub.cfg: ===========================

#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by /usr/sbin/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 recordfail {
set recordfail=1
if [ -n ${have_grubenv} ]; then if [ -z ${boot_once} ]; then save_env recordfail; fi; fi
}
insmod raid
insmod mdraid
insmod ext2
set root='(md0)'
search --no-floppy --fs-uuid --set 02320179-41b4-4315-b547-68061b49f3d0
if loadfont /usr/share/grub/unicode.pf2 ; then
set gfxmode=640x480
insmod gfxterm
insmod vbe
if terminal_output gfxterm ; then true ; else
# For backward compatibility with versions of terminal.mod that don't
# understand terminal_output
terminal gfxterm
fi
fi
insmod raid
insmod mdraid
insmod ext2
set root='(md0)'
search --no-floppy --fs-uuid --set 02320179-41b4-4315-b547-68061b49f3d0
set locale_dir=($root)/boot/grub/locale
set lang=en
insmod gettext
if [ ${recordfail} = 1 ]; then
set timeout=-1
else
set timeout=10
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
menuentry 'Ubuntu, with Linux 2.6.32-21-generic' --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod raid
insmod mdraid
insmod ext2
set root='(md0)'
search --no-floppy --fs-uuid --set 02320179-41b4-4315-b547-68061b49f3d0
linux /boot/vmlinuz-2.6.32-21-generic root=UUID=02320179-41b4-4315-b547-68061b49f3d0 ro acpi=off noapic nolapic quiet splash
initrd /boot/initrd.img-2.6.32-21-generic
}
menuentry 'Ubuntu, with Linux 2.6.32-21-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod raid
insmod mdraid
insmod ext2
set root='(md0)'
search --no-floppy --fs-uuid --set 02320179-41b4-4315-b547-68061b49f3d0
echo 'Loading Linux 2.6.32-21-generic ...'
linux /boot/vmlinuz-2.6.32-21-generic root=UUID=02320179-41b4-4315-b547-68061b49f3d0 ro single acpi=off noapic nolapic
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-2.6.32-21-generic
}
menuentry 'Ubuntu, with Linux 2.6.31-20-generic' --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod raid
insmod mdraid
insmod ext2
set root='(md0)'
search --no-floppy --fs-uuid --set 02320179-41b4-4315-b547-68061b49f3d0
linux /boot/vmlinuz-2.6.31-20-generic root=UUID=02320179-41b4-4315-b547-68061b49f3d0 ro acpi=off noapic nolapic quiet splash
initrd /boot/initrd.img-2.6.31-20-generic
}
menuentry 'Ubuntu, with Linux 2.6.31-20-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod raid
insmod mdraid
insmod ext2
set root='(md0)'
search --no-floppy --fs-uuid --set 02320179-41b4-4315-b547-68061b49f3d0
echo 'Loading Linux 2.6.31-20-generic ...'
linux /boot/vmlinuz-2.6.31-20-generic root=UUID=02320179-41b4-4315-b547-68061b49f3d0 ro single acpi=off noapic nolapic
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-2.6.31-20-generic
}
### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/11_Windows ###
menuentry “Windows 7″ {
set root='(hd3,1)'
chainloader +1
}
### END /etc/grub.d/11_Windows ###

### BEGIN /etc/grub.d/20_memtest86+ ###
menuentry "Memory test (memtest86+)" {
insmod raid
insmod mdraid
insmod ext2
set root='(md0)'
search --no-floppy --fs-uuid --set 02320179-41b4-4315-b547-68061b49f3d0
linux16 /boot/memtest86+.bin
}
menuentry "Memory test (memtest86+, serial console 115200)" {
insmod raid
insmod mdraid
insmod ext2
set root='(md0)'
search --no-floppy --fs-uuid --set 02320179-41b4-4315-b547-68061b49f3d0
linux16 /boot/memtest86+.bin console=ttyS0,115200n8
}
### END /etc/grub.d/20_memtest86+ ###

### BEGIN /etc/grub.d/30_os-prober ###
menuentry "Ubuntu, Linux 2.6.31-19-generic (on /dev/sdd2)" {
insmod ext2
set root='(hd3,2)'
search --no-floppy --fs-uuid --set f574912e-fe34-45b9-9ecd-77822a2850d7
linux /boot/vmlinuz-2.6.31-19-generic root=UUID=f574912e-fe34-45b9-9ecd-77822a2850d7 ro quiet splash
initrd /boot/initrd.img-2.6.31-19-generic
}
menuentry "Ubuntu, Linux 2.6.31-19-generic (recovery mode) (on /dev/sdd2)" {
insmod ext2
set root='(hd3,2)'
search --no-floppy --fs-uuid --set f574912e-fe34-45b9-9ecd-77822a2850d7
linux /boot/vmlinuz-2.6.31-19-generic root=UUID=f574912e-fe34-45b9-9ecd-77822a2850d7 ro single
initrd /boot/initrd.img-2.6.31-19-generic
}
menuentry "Ubuntu, Linux 2.6.31-14-generic (on /dev/sdd2)" {
insmod ext2
set root='(hd3,2)'
search --no-floppy --fs-uuid --set f574912e-fe34-45b9-9ecd-77822a2850d7
linux /boot/vmlinuz-2.6.31-14-generic root=UUID=f574912e-fe34-45b9-9ecd-77822a2850d7 ro quiet splash
initrd /boot/initrd.img-2.6.31-14-generic
}
menuentry "Ubuntu, Linux 2.6.31-14-generic (recovery mode) (on /dev/sdd2)" {
insmod ext2
set root='(hd3,2)'
search --no-floppy --fs-uuid --set f574912e-fe34-45b9-9ecd-77822a2850d7
linux /boot/vmlinuz-2.6.31-14-generic root=UUID=f574912e-fe34-45b9-9ecd-77822a2850d7 ro single
initrd /boot/initrd.img-2.6.31-14-generic
}
### 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 ###

================================ md0/etc/fstab: ================================

# /etc/fstab: static file system information.
#
# Use 'blkid -o value -s UUID' to print the universally unique identifier
# for a device; this may be used with UUID= as a more robust way to name
# devices that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0
# / was on /dev/md0 during installation
UUID=02320179-41b4-4315-b547-68061b49f3d0 / ext4 errors=remount-ro 0 1
# /home was on /dev/md1 during installation
UUID=44d42c14-27f7-4567-bca0-e9b7003fc497 /home ext4 defaults 0 2
# swap was on /dev/sda5 during installation
#UUID=27f3bc1d-5024-4549-af81-5ea19082dbd1 none swap sw 0 0
# swap was on /dev/sdc5 during installation
#UUID=f37d90df-f7c8-40c9-ac63-dada67f1b4f5 none swap sw 0 0
/dev/scd0 /media/cdrom0 udf,iso9660 user,noauto,exec,utf8 0 0
/dev/scd1 /media/cdrom1 udf,iso9660 user,noauto,exec,utf8 0 0
/dev/mapper/cryptswap1 none swap sw 0 0
/dev/mapper/cryptswap2 none swap sw 0 0
/dev/mapper/cryptswap3 none swap sw 0 0

==================== md0: Location of files loaded by Grub: ====================


2.4GB: boot/grub/core.img
2.5GB: boot/grub/grub.cfg
3.7GB: boot/initrd.img-2.6.31-20-generic
3.8GB: boot/initrd.img-2.6.32-21-generic
3.5GB: boot/vmlinuz-2.6.31-20-generic
3.8GB: boot/vmlinuz-2.6.32-21-generic
3.8GB: initrd.img
3.7GB: initrd.img.old
3.8GB: vmlinuz
3.5GB: vmlinuz.old
=============================== StdErr Messages: ===============================

hexdump: sdb7/ubuntu-9.10-desktop-i386.iso: Input/output error
hexdump: sdb7/ubuntu-9.10-desktop-i386.iso: Input/output error
hexdump: sdb7/ubuntu-9.10-desktop-i386.iso: Input/output error

kansasnoob
May 5th, 2010, 08:34 PM
Nothing "personal" about it, no passwords or "personal" info of any kind, not even any "connection" info.

That said I see RAID!!!!!!!!!!!

I know nothing about raid :(

Hopefully someone else here does.