Hard Drive Organization

Karl F. Larsen klarsen1 at gmail.com
Sat Jan 9 23:52:34 UTC 2010


Chris wrote:
> On Sat, 09 Jan 2010 16:28:31 -0700
> "Karl F. Larsen" <klarsen1 at gmail.com> wrote:
> 
>> Chris wrote:
>>> On Sat, 09 Jan 2010 14:21:23 -0700
>>> "Karl F. Larsen" <klarsen1 at gmail.com> wrote:
>>>
>>>>
>>>>          I have 14 versions of Ubuntu and Fedora on my 160 GB 
>>>> Hard Drive. Each of the versions use the same Home directory 
>>>> which is in it's own partition on the Hard Drive.
>>>>
>>>>          In April when the next version of Ubuntu comes along 
>>>> I will put it into a new 5GB partition. Then, using /etc/fdisk 
>>>> I will mount the big Home partition onto this version as well. 
>>>> The Home partition is 25GB.
>>>>
>>>>          If this is something you would like to do, then I am 
>>>> willing to write a blurb on how this is done in detail if 
>>>> anyone would like it. If no interest I won't bother since I 
>>>> know already.
>>>>
>>>> 73 Karl
>>>>
>>>>
>>>>
>>> I would like a list of the 14 versions of Ubu that's installed.
>>>
>> Here is my grub.cfg and you can count the kernel values and 
>> get some idea what it is.
>>
>> -- file:///home/karl/Desktop/grub.cfg
>>
>>
>> 	Karl F. Larsen, AKA K5DI
>> 	Linux User
>> 	#450462   http://counter.li.org.
>>          Key ID = 3951B48D
>>
>>
> 
> Of course, you knew that that link (I guess) won't and doe not work.
> 
	No I didn't I copied grub.cfg to my desktop and slid a copy 
to that email. I guess it didn't work. Let me try 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 /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,8)
search --no-floppy --fs-uuid --set 
05073e4b-bdcb-4a8f-8a63-35245eb5fb2a
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-17-generic" {
         recordfail=1
         if [ -n ${have_grubenv} ]; then save_env recordfail; fi
	set quiet=1
	insmod ext2
	set root=(hd0,8)
	search --no-floppy --fs-uuid --set 
05073e4b-bdcb-4a8f-8a63-35245eb5fb2a
	linux	/boot/vmlinuz-2.6.31-17-generic 
root=UUID=05073e4b-bdcb-4a8f-8a63-35245eb5fb2a ro   quiet splash
	initrd	/boot/initrd.img-2.6.31-17-generic
}
menuentry "Ubuntu, Linux 2.6.31-17-generic (recovery mode)" {
         recordfail=1
         if [ -n ${have_grubenv} ]; then save_env recordfail; fi
	insmod ext2
	set root=(hd0,8)
	search --no-floppy --fs-uuid --set 
05073e4b-bdcb-4a8f-8a63-35245eb5fb2a
	linux	/boot/vmlinuz-2.6.31-17-generic 
root=UUID=05073e4b-bdcb-4a8f-8a63-35245eb5fb2a ro single
	initrd	/boot/initrd.img-2.6.31-17-generic
}
menuentry "Ubuntu, Linux 2.6.31-16-generic" {
         recordfail=1
         if [ -n ${have_grubenv} ]; then save_env recordfail; fi
	set quiet=1
	insmod ext2
	set root=(hd0,8)
	search --no-floppy --fs-uuid --set 
05073e4b-bdcb-4a8f-8a63-35245eb5fb2a
	linux	/boot/vmlinuz-2.6.31-16-generic 
root=UUID=05073e4b-bdcb-4a8f-8a63-35245eb5fb2a ro   quiet splash
	initrd	/boot/initrd.img-2.6.31-16-generic
}
menuentry "Ubuntu, Linux 2.6.31-16-generic (recovery mode)" {
         recordfail=1
         if [ -n ${have_grubenv} ]; then save_env recordfail; fi
	insmod ext2
	set root=(hd0,8)
	search --no-floppy --fs-uuid --set 
05073e4b-bdcb-4a8f-8a63-35245eb5fb2a
	linux	/boot/vmlinuz-2.6.31-16-generic 
root=UUID=05073e4b-bdcb-4a8f-8a63-35245eb5fb2a ro single
	initrd	/boot/initrd.img-2.6.31-16-generic
}
menuentry "Ubuntu, Linux 2.6.31-15-generic" {
         recordfail=1
         if [ -n ${have_grubenv} ]; then save_env recordfail; fi
	set quiet=1
	insmod ext2
	set root=(hd0,8)
	search --no-floppy --fs-uuid --set 
05073e4b-bdcb-4a8f-8a63-35245eb5fb2a
	linux	/boot/vmlinuz-2.6.31-15-generic 
root=UUID=05073e4b-bdcb-4a8f-8a63-35245eb5fb2a ro   quiet splash
	initrd	/boot/initrd.img-2.6.31-15-generic
}
menuentry "Ubuntu, Linux 2.6.31-15-generic (recovery mode)" {
         recordfail=1
         if [ -n ${have_grubenv} ]; then save_env recordfail; fi
	insmod ext2
	set root=(hd0,8)
	search --no-floppy --fs-uuid --set 
05073e4b-bdcb-4a8f-8a63-35245eb5fb2a
	linux	/boot/vmlinuz-2.6.31-15-generic 
root=UUID=05073e4b-bdcb-4a8f-8a63-35245eb5fb2a ro single
	initrd	/boot/initrd.img-2.6.31-15-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,8)
	search --no-floppy --fs-uuid --set 
05073e4b-bdcb-4a8f-8a63-35245eb5fb2a
	linux	/boot/vmlinuz-2.6.31-14-generic 
root=UUID=05073e4b-bdcb-4a8f-8a63-35245eb5fb2a 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,8)
	search --no-floppy --fs-uuid --set 
05073e4b-bdcb-4a8f-8a63-35245eb5fb2a
	linux	/boot/vmlinuz-2.6.31-14-generic 
root=UUID=05073e4b-bdcb-4a8f-8a63-35245eb5fb2a ro single
	initrd	/boot/initrd.img-2.6.31-14-generic
}
menuentry "Ubuntu, Linux 2.6.31-13-generic" {
         recordfail=1
         if [ -n ${have_grubenv} ]; then save_env recordfail; fi
	set quiet=1
	insmod ext2
	set root=(hd0,8)
	search --no-floppy --fs-uuid --set 
05073e4b-bdcb-4a8f-8a63-35245eb5fb2a
	linux	/boot/vmlinuz-2.6.31-13-generic 
root=UUID=05073e4b-bdcb-4a8f-8a63-35245eb5fb2a ro   quiet splash
	initrd	/boot/initrd.img-2.6.31-13-generic
}
menuentry "Ubuntu, Linux 2.6.31-13-generic (recovery mode)" {
         recordfail=1
         if [ -n ${have_grubenv} ]; then save_env recordfail; fi
	insmod ext2
	set root=(hd0,8)
	search --no-floppy --fs-uuid --set 
05073e4b-bdcb-4a8f-8a63-35245eb5fb2a
	linux	/boot/vmlinuz-2.6.31-13-generic 
root=UUID=05073e4b-bdcb-4a8f-8a63-35245eb5fb2a ro single
	initrd	/boot/initrd.img-2.6.31-13-generic
}
menuentry "Ubuntu, Linux 2.6.31-12-generic" {
         recordfail=1
         if [ -n ${have_grubenv} ]; then save_env recordfail; fi
	set quiet=1
	insmod ext2
	set root=(hd0,8)
	search --no-floppy --fs-uuid --set 
05073e4b-bdcb-4a8f-8a63-35245eb5fb2a
	linux	/boot/vmlinuz-2.6.31-12-generic 
root=UUID=05073e4b-bdcb-4a8f-8a63-35245eb5fb2a ro   quiet splash
	initrd	/boot/initrd.img-2.6.31-12-generic
}
menuentry "Ubuntu, Linux 2.6.31-12-generic (recovery mode)" {
         recordfail=1
         if [ -n ${have_grubenv} ]; then save_env recordfail; fi
	insmod ext2
	set root=(hd0,8)
	search --no-floppy --fs-uuid --set 
05073e4b-bdcb-4a8f-8a63-35245eb5fb2a
	linux	/boot/vmlinuz-2.6.31-12-generic 
root=UUID=05073e4b-bdcb-4a8f-8a63-35245eb5fb2a ro single
	initrd	/boot/initrd.img-2.6.31-12-generic
}
menuentry "Ubuntu, Linux 2.6.31-11-generic" {
         recordfail=1
         if [ -n ${have_grubenv} ]; then save_env recordfail; fi
	set quiet=1
	insmod ext2
	set root=(hd0,8)
	search --no-floppy --fs-uuid --set 
05073e4b-bdcb-4a8f-8a63-35245eb5fb2a
	linux	/boot/vmlinuz-2.6.31-11-generic 
root=UUID=05073e4b-bdcb-4a8f-8a63-35245eb5fb2a ro   quiet splash
	initrd	/boot/initrd.img-2.6.31-11-generic
}
menuentry "Ubuntu, Linux 2.6.31-11-generic (recovery mode)" {
         recordfail=1
         if [ -n ${have_grubenv} ]; then save_env recordfail; fi
	insmod ext2
	set root=(hd0,8)
	search --no-floppy --fs-uuid --set 
05073e4b-bdcb-4a8f-8a63-35245eb5fb2a
	linux	/boot/vmlinuz-2.6.31-11-generic 
root=UUID=05073e4b-bdcb-4a8f-8a63-35245eb5fb2a ro single
	initrd	/boot/initrd.img-2.6.31-11-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 "Microsoft Windows XP Professional (on /dev/sda1)" {
	insmod ntfs
	set root=(hd0,1)
	search --no-floppy --fs-uuid --set 7428ef7928ef392e
	drivemap -s (hd0) ${root}
	chainloader +1
}
menuentry "Ubuntu 7.10, kernel 2.6.22-16-generic (on /dev/sda2)" {
	insmod ext2
	set root=(hd0,2)
	search --no-floppy --fs-uuid --set 
95429e4c-cdde-480a-88ba-674fb6619838
	linux /boot/vmlinuz-2.6.22-16-generic 
root=UUID=dcc8de2c-a0ff-44d7-928d-443cac5b4efe ro quiet splash
	initrd /boot/initrd.img-2.6.22-16-generic
}
menuentry "Ubuntu 7.10, kernel 2.6.22-16-generic (recovery 
mode) (on /dev/sda2)" {
	insmod ext2
	set root=(hd0,2)
	search --no-floppy --fs-uuid --set 
95429e4c-cdde-480a-88ba-674fb6619838
	linux /boot/vmlinuz-2.6.22-16-generic 
root=UUID=dcc8de2c-a0ff-44d7-928d-443cac5b4efe ro single
	initrd /boot/initrd.img-2.6.22-16-generic
}
menuentry "Ubuntu 7.10, kernel 2.6.22-15-generic (on /dev/sda2)" {
	insmod ext2
	set root=(hd0,2)
	search --no-floppy --fs-uuid --set 
95429e4c-cdde-480a-88ba-674fb6619838
	linux /boot/vmlinuz-2.6.22-15-generic 
root=UUID=dcc8de2c-a0ff-44d7-928d-443cac5b4efe ro quiet splash
	initrd /boot/initrd.img-2.6.22-15-generic
}
menuentry "Ubuntu 7.10, kernel 2.6.22-15-generic (recovery 
mode) (on /dev/sda2)" {
	insmod ext2
	set root=(hd0,2)
	search --no-floppy --fs-uuid --set 
95429e4c-cdde-480a-88ba-674fb6619838
	linux /boot/vmlinuz-2.6.22-15-generic 
root=UUID=dcc8de2c-a0ff-44d7-928d-443cac5b4efe ro single
	initrd /boot/initrd.img-2.6.22-15-generic
}
menuentry "Ubuntu 7.10, kernel 2.6.22-14-generic (on /dev/sda2)" {
	insmod ext2
	set root=(hd0,2)
	search --no-floppy --fs-uuid --set 
95429e4c-cdde-480a-88ba-674fb6619838
	linux /boot/vmlinuz-2.6.22-14-generic 
root=UUID=dcc8de2c-a0ff-44d7-928d-443cac5b4efe ro quiet splash
	initrd /boot/initrd.img-2.6.22-14-generic
}
menuentry "Ubuntu 7.10, kernel 2.6.22-14-generic (recovery 
mode) (on /dev/sda2)" {
	insmod ext2
	set root=(hd0,2)
	search --no-floppy --fs-uuid --set 
95429e4c-cdde-480a-88ba-674fb6619838
	linux /boot/vmlinuz-2.6.22-14-generic 
root=UUID=dcc8de2c-a0ff-44d7-928d-443cac5b4efe ro single
	initrd /boot/initrd.img-2.6.22-14-generic
}
menuentry "Ubuntu 7.10, memtest86+ (on /dev/sda2)" {
	insmod ext2
	set root=(hd0,2)
	search --no-floppy --fs-uuid --set 
95429e4c-cdde-480a-88ba-674fb6619838
	linux /boot/memtest86+.bin
}
menuentry "Ubuntu 8.04.3 LTS, kernel 2.6.24-26-generic (on 
/dev/sda6)" {
	insmod ext2
	set root=(hd0,6)
	search --no-floppy --fs-uuid --set 
caa752e0-63cd-4ddc-b1ec-1367e8e106a5
	linux /boot/vmlinuz-2.6.24-26-generic 
root=UUID=caa752e0-63cd-4ddc-b1ec-1367e8e106a5 ro quiet splash
	initrd /boot/initrd.img-2.6.24-26-generic
}
menuentry "Ubuntu 8.04.3 LTS, kernel 2.6.24-26-generic 
(recovery mode) (on /dev/sda6)" {
	insmod ext2
	set root=(hd0,6)
	search --no-floppy --fs-uuid --set 
caa752e0-63cd-4ddc-b1ec-1367e8e106a5
	linux /boot/vmlinuz-2.6.24-26-generic 
root=UUID=caa752e0-63cd-4ddc-b1ec-1367e8e106a5 ro single
	initrd /boot/initrd.img-2.6.24-26-generic
}
menuentry "Ubuntu 8.04.3 LTS, kernel 2.6.24-25-generic (on 
/dev/sda6)" {
	insmod ext2
	set root=(hd0,6)
	search --no-floppy --fs-uuid --set 
caa752e0-63cd-4ddc-b1ec-1367e8e106a5
	linux /boot/vmlinuz-2.6.24-25-generic 
root=UUID=caa752e0-63cd-4ddc-b1ec-1367e8e106a5 ro quiet splash
	initrd /boot/initrd.img-2.6.24-25-generic
}
menuentry "Ubuntu 8.04.3 LTS, kernel 2.6.24-25-generic 
(recovery mode) (on /dev/sda6)" {
	insmod ext2
	set root=(hd0,6)
	search --no-floppy --fs-uuid --set 
caa752e0-63cd-4ddc-b1ec-1367e8e106a5
	linux /boot/vmlinuz-2.6.24-25-generic 
root=UUID=caa752e0-63cd-4ddc-b1ec-1367e8e106a5 ro single
	initrd /boot/initrd.img-2.6.24-25-generic
}
menuentry "Ubuntu 8.04.3 LTS, kernel 2.6.24-24-generic (on 
/dev/sda6)" {
	insmod ext2
	set root=(hd0,6)
	search --no-floppy --fs-uuid --set 
caa752e0-63cd-4ddc-b1ec-1367e8e106a5
	linux /boot/vmlinuz-2.6.24-24-generic 
root=UUID=caa752e0-63cd-4ddc-b1ec-1367e8e106a5 ro quiet splash
	initrd /boot/initrd.img-2.6.24-24-generic
}
menuentry "Ubuntu 8.04.3 LTS, kernel 2.6.24-24-generic 
(recovery mode) (on /dev/sda6)" {
	insmod ext2
	set root=(hd0,6)
	search --no-floppy --fs-uuid --set 
caa752e0-63cd-4ddc-b1ec-1367e8e106a5
	linux /boot/vmlinuz-2.6.24-24-generic 
root=UUID=caa752e0-63cd-4ddc-b1ec-1367e8e106a5 ro single
	initrd /boot/initrd.img-2.6.24-24-generic
}
menuentry "Ubuntu 8.04.3 LTS, kernel 2.6.24-16-generic (on 
/dev/sda6)" {
	insmod ext2
	set root=(hd0,6)
	search --no-floppy --fs-uuid --set 
caa752e0-63cd-4ddc-b1ec-1367e8e106a5
	linux /boot/vmlinuz-2.6.24-16-generic 
root=UUID=caa752e0-63cd-4ddc-b1ec-1367e8e106a5 ro quiet splash
	initrd /boot/initrd.img-2.6.24-16-generic
}
menuentry "Ubuntu 8.04.3 LTS, kernel 2.6.24-16-generic 
(recovery mode) (on /dev/sda6)" {
	insmod ext2
	set root=(hd0,6)
	search --no-floppy --fs-uuid --set 
caa752e0-63cd-4ddc-b1ec-1367e8e106a5
	linux /boot/vmlinuz-2.6.24-16-generic 
root=UUID=caa752e0-63cd-4ddc-b1ec-1367e8e106a5 ro single
	initrd /boot/initrd.img-2.6.24-16-generic
}
menuentry "Ubuntu 8.04.3 LTS, memtest86+ (on /dev/sda6)" {
	insmod ext2
	set root=(hd0,6)
	search --no-floppy --fs-uuid --set 
caa752e0-63cd-4ddc-b1ec-1367e8e106a5
	linux /boot/memtest86+.bin
}
menuentry "Ubuntu 8.10, kernel 2.6.27-14-generic (on /dev/sda7)" {
	insmod ext2
	set root=(hd0,7)
	search --no-floppy --fs-uuid --set 
7c83de31-14d9-449a-9d23-75d18c1acd1a
	linux /boot/vmlinuz-2.6.27-14-generic 
root=UUID=7c83de31-14d9-449a-9d23-75d18c1acd1a ro quiet splash
	initrd /boot/initrd.img-2.6.27-14-generic
}
menuentry "Ubuntu 8.10, kernel 2.6.27-14-generic (recovery 
mode) (on /dev/sda7)" {
	insmod ext2
	set root=(hd0,7)
	search --no-floppy --fs-uuid --set 
7c83de31-14d9-449a-9d23-75d18c1acd1a
	linux /boot/vmlinuz-2.6.27-14-generic 
root=UUID=7c83de31-14d9-449a-9d23-75d18c1acd1a ro single
	initrd /boot/initrd.img-2.6.27-14-generic
}
menuentry "Ubuntu 8.10, kernel 2.6.27-11-generic (on /dev/sda7)" {
	insmod ext2
	set root=(hd0,7)
	search --no-floppy --fs-uuid --set 
7c83de31-14d9-449a-9d23-75d18c1acd1a
	linux /boot/vmlinuz-2.6.27-11-generic 
root=UUID=7c83de31-14d9-449a-9d23-75d18c1acd1a ro quiet splash
	initrd /boot/initrd.img-2.6.27-11-generic
}
menuentry "Ubuntu 8.10, kernel 2.6.27-11-generic (recovery 
mode) (on /dev/sda7)" {
	insmod ext2
	set root=(hd0,7)
	search --no-floppy --fs-uuid --set 
7c83de31-14d9-449a-9d23-75d18c1acd1a
	linux /boot/vmlinuz-2.6.27-11-generic 
root=UUID=7c83de31-14d9-449a-9d23-75d18c1acd1a ro single
	initrd /boot/initrd.img-2.6.27-11-generic
}
menuentry "Ubuntu 8.10, kernel 2.6.27-7-generic (on /dev/sda7)" {
	insmod ext2
	set root=(hd0,7)
	search --no-floppy --fs-uuid --set 
7c83de31-14d9-449a-9d23-75d18c1acd1a
	linux /boot/vmlinuz-2.6.27-7-generic 
root=UUID=7c83de31-14d9-449a-9d23-75d18c1acd1a ro quiet splash
	initrd /boot/initrd.img-2.6.27-7-generic
}
menuentry "Ubuntu 8.10, kernel 2.6.27-7-generic (recovery 
mode) (on /dev/sda7)" {
	insmod ext2
	set root=(hd0,7)
	search --no-floppy --fs-uuid --set 
7c83de31-14d9-449a-9d23-75d18c1acd1a
	linux /boot/vmlinuz-2.6.27-7-generic 
root=UUID=7c83de31-14d9-449a-9d23-75d18c1acd1a ro single
	initrd /boot/initrd.img-2.6.27-7-generic
}
menuentry "Ubuntu 8.10, memtest86+ (on /dev/sda7)" {
	insmod ext2
	set root=(hd0,7)
	search --no-floppy --fs-uuid --set 
7c83de31-14d9-449a-9d23-75d18c1acd1a
	linux /boot/memtest86+.bin
}
menuentry "Ubuntu 9.04, kernel 2.6.28-17-generic (on /dev/sda9)" {
	insmod ext2
	set root=(hd0,9)
	search --no-floppy --fs-uuid --set 
6bae2f33-aff5-42ca-b2cc-65cea5be3cc8
	linux /boot/vmlinuz-2.6.28-17-generic 
root=UUID=6bae2f33-aff5-42ca-b2cc-65cea5be3cc8 ro quiet splash
	initrd /boot/initrd.img-2.6.28-17-generic
}
menuentry "Ubuntu 9.04, kernel 2.6.28-17-generic (recovery 
mode) (on /dev/sda9)" {
	insmod ext2
	set root=(hd0,9)
	search --no-floppy --fs-uuid --set 
6bae2f33-aff5-42ca-b2cc-65cea5be3cc8
	linux /boot/vmlinuz-2.6.28-17-generic 
root=UUID=6bae2f33-aff5-42ca-b2cc-65cea5be3cc8 ro single
	initrd /boot/initrd.img-2.6.28-17-generic
}
menuentry "Ubuntu 9.04, kernel 2.6.28-16-generic (on /dev/sda9)" {
	insmod ext2
	set root=(hd0,9)
	search --no-floppy --fs-uuid --set 
6bae2f33-aff5-42ca-b2cc-65cea5be3cc8
	linux /boot/vmlinuz-2.6.28-16-generic 
root=UUID=6bae2f33-aff5-42ca-b2cc-65cea5be3cc8 ro quiet splash
	initrd /boot/initrd.img-2.6.28-16-generic
}
menuentry "Ubuntu 9.04, kernel 2.6.28-16-generic (recovery 
mode) (on /dev/sda9)" {
	insmod ext2
	set root=(hd0,9)
	search --no-floppy --fs-uuid --set 
6bae2f33-aff5-42ca-b2cc-65cea5be3cc8
	linux /boot/vmlinuz-2.6.28-16-generic 
root=UUID=6bae2f33-aff5-42ca-b2cc-65cea5be3cc8 ro single
	initrd /boot/initrd.img-2.6.28-16-generic
}
menuentry "Ubuntu 9.04, kernel 2.6.28-15-generic (on /dev/sda9)" {
	insmod ext2
	set root=(hd0,9)
	search --no-floppy --fs-uuid --set 
6bae2f33-aff5-42ca-b2cc-65cea5be3cc8
	linux /boot/vmlinuz-2.6.28-15-generic 
root=UUID=6bae2f33-aff5-42ca-b2cc-65cea5be3cc8 ro quiet splash
	initrd /boot/initrd.img-2.6.28-15-generic
}
menuentry "Ubuntu 9.04, kernel 2.6.28-15-generic (recovery 
mode) (on /dev/sda9)" {
	insmod ext2
	set root=(hd0,9)
	search --no-floppy --fs-uuid --set 
6bae2f33-aff5-42ca-b2cc-65cea5be3cc8
	linux /boot/vmlinuz-2.6.28-15-generic 
root=UUID=6bae2f33-aff5-42ca-b2cc-65cea5be3cc8 ro single
	initrd /boot/initrd.img-2.6.28-15-generic
}
menuentry "Ubuntu 9.04, kernel 2.6.28-11-generic (on /dev/sda9)" {
	insmod ext2
	set root=(hd0,9)
	search --no-floppy --fs-uuid --set 
6bae2f33-aff5-42ca-b2cc-65cea5be3cc8
	linux /boot/vmlinuz-2.6.28-11-generic 
root=UUID=6bae2f33-aff5-42ca-b2cc-65cea5be3cc8 ro quiet splash
	initrd /boot/initrd.img-2.6.28-11-generic
}
menuentry "Ubuntu 9.04, kernel 2.6.28-11-generic (recovery 
mode) (on /dev/sda9)" {
	insmod ext2
	set root=(hd0,9)
	search --no-floppy --fs-uuid --set 
6bae2f33-aff5-42ca-b2cc-65cea5be3cc8
	linux /boot/vmlinuz-2.6.28-11-generic 
root=UUID=6bae2f33-aff5-42ca-b2cc-65cea5be3cc8 ro single
	initrd /boot/initrd.img-2.6.28-11-generic
}
menuentry "Ubuntu 9.04, memtest86+ (on /dev/sda9)" {
	insmod ext2
	set root=(hd0,9)
	search --no-floppy --fs-uuid --set 
6bae2f33-aff5-42ca-b2cc-65cea5be3cc8
	linux /boot/memtest86+.bin
}
menuentry "Microsoft Windows XP Home Edition (on /dev/sdb1)" {
	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 ###

This should work. Sorry

73 Karl


-- 

	Karl F. Larsen, AKA K5DI
	Linux User
	#450462   http://counter.li.org.
         Key ID = 3951B48D





More information about the ubuntu-users mailing list