Guys, I am having problem here with GRUB, not really a GRUB error but the GRUB can’t find the exact LMDE partition to boot.
I have 4 sata harddisk with 3 OS running on my PC, the fdisk -l return
fdisk -l
Disk /dev/sda: 160.0 GB, 160000000000 bytes
255 heads, 63 sectors/track, 19452 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x73c6f49eDevice Boot Start End Blocks Id System
/dev/sda1 * 1 19452 156247040 7 HPFS/NTFSDisk /dev/sdc: 320.1 GB, 320072933376 bytes
255 heads, 63 sectors/track, 38913 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x55ed2e5fDevice Boot Start End Blocks Id System
/dev/sdc1 * 1 38914 312567808 7 HPFS/NTFSDisk /dev/sdd: 80.0 GB, 80026361856 bytes
255 heads, 63 sectors/track, 9729 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x000c46aaDevice Boot Start End Blocks Id System
/dev/sdd1 * 1 9328 74920960 83 Linux
/dev/sdd2 9328 9730 3227649 5 Extended
/dev/sdd5 9328 9730 3227648 82 Linux swap / SolarisDisk /dev/sdb: 160.0 GB, 160041885696 bytes
255 heads, 63 sectors/track, 19457 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0xc058c058Device Boot Start End Blocks Id System
/dev/sdb1 1 262 2103296 82 Linux swap / Solaris
Partition 1 does not end on cylinder boundary.
/dev/sdb2 * 262 2873 20972544 83 Linux
/dev/sdb3 2873 19458 133213184 83 Linux
/dev/sdd belongs to LMDE
boot/grub/device.map
(hd0) /dev/disk/by-id/ata-ST3160815AS_6RX8RCJ0
(hd1) /dev/disk/by-id/ata-WDC_WD1600AAJS-75B4A0_WD-WMAT21239131
(hd3) /dev/disk/by-id/ata-ST380815AS_5RW15M02
(hd2) /dev/disk/by-id/ata-WDC_WD3200AAKS-75L9A0_WD-WCAV28024927
hd3 is currently where my LMDE is. It is working when I am put this as a first boot priority.
I am trying to put the values into boot/grub/menu.lst
#Don’t change this comment - YaST2 identifier: Original name: none#
title LMDE
root (hd3,0)
kernel /vmlinuz root=/dev/sdd1 ro quiet splash
initrd /initrd.img
Booting into this LMDE will return error of code 15, it is the same value as it was working before, before I changed to new hdd for my LMDE. What I am trying to do is I want legacy GRUB to manages all the booting. Can anybody tell me what are the the mistake there?
Thanks.