Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
05-23-2009, 04:15 PM
|
#1
|
Member
Registered: Sep 2006
Location: Inkster, MI USA
Distribution: Ubuntu
Posts: 31
Rep:
|
Grub Error 15 When Trying to Boot from 2nd IDE Channel
My primary IDE channel died, so I plugged my Ubuntu Hardy drive into the second IDE channel as master, and the BIOS sees it fine.
But now when I try to boot, I get 'error 15'. Here is the output of fdisk -l:
Code:
Device Boot Start End Blocks Id System
/dev/sda1 * 1 48127 386580096 83 Linux
/dev/sda2 48128 48641 4128673+ f W95 Ext'd (LBA)
/dev/sda5 48128 48431 2441817 83 Linux
/dev/sda6 48432 48453 176683+ 82 Linux swap / Solaris
/dev/sda7 48454 48641 1510078+ 82 Linux swap / Solaris
The output of blkid is:
Code:
/dev/sda1: UUID="9b7f81f4-686b-42fb-9e20-e2b88f21bd43" SEC_TYPE="ext2" TYPE="ext3"
/dev/sda5: UUID="8324db06-ef32-456a-a8bb-1f7df4d45e2d" SEC_TYPE="ext2" TYPE="ext3"
/dev/sda6: TYPE="swap" UUID="a6680bb8-3314-49db-8d5e-61ba9e3ca5f1"
/dev/sda7: TYPE="swap" UUID="ebf47197-4df0-4a56-8491-4b4bd74571ab"
/dev/loop0: TYPE="squashfs"
/etc/fstab:
Code:
# /etc/fstab: static file system information.
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0
# /dev/sda1
UUID=9b7f81f4-686b-42fb-9e20-e2b88f21bd43 / ext3 relatime,errors=remount-ro 0 1
# /dev/sda5
UUID=ebf47197-4df0-4a56-8491-4b4bd74571ab 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/fd0 /media/floppy0 auto rw,user,noauto,exec,utf8 0 0
Now, if I am not mistaken, the master device on the second IDE channel should be "/dev/hdc", which grub should see as hd(3)?
I am completely confused, can anybody find a solution? I stumped them over on Ubuntu Forums.
Thanks,
Tim
|
|
|
05-23-2009, 04:18 PM
|
#2
|
Moderator
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417
|
if you can't boot, how have you got that output??
hdc would be hd(2) to grub. You know you can bounce about in the grub shell before booting to try to suss that sort of thing out, yeah? change the root etc, see what files it can find based on the current config etc.
|
|
|
05-24-2009, 12:01 AM
|
#3
|
Member
Registered: Sep 2006
Location: Inkster, MI USA
Distribution: Ubuntu
Posts: 31
Original Poster
Rep:
|
Bouncing About in Grub
Quote:
Originally Posted by acid_kewpie
if you can't boot, how have you got that output??
hdc would be hd(2) to grub. You know you can bounce about in the grub shell before booting to try to suss that sort of thing out, yeah? change the root etc, see what files it can find based on the current config etc.
|
Sorry, I forgot to mention that I am posting via an Ubuntu Hardy live cd.
I have tried to find out what grub is trying to do:
Code:
grub> find /boot/grub/stage1
(hd0,0)
(hd0,4)
Grub insists that the drive is (hd0) but, as you say, I think it should be hd(2). FWIW, I believe that grub gets the disk config from /etc/fstab. I wonder if I should edit fstab to reflect the new disk location, or is there a safer, simpler way?
Thanks!
Tim
|
|
|
05-24-2009, 01:31 AM
|
#4
|
LQ Veteran
Registered: Aug 2003
Location: Australia
Distribution: Lots ...
Posts: 21,357
|
Quote:
Originally Posted by kc8hr
Now, if I am not mistaken, the master device on the second IDE channel should be "/dev/hdc", which grub should see as hd(3)?
|
You are mistaken.
Grub sees the first (BIOS recognised) disk as hd0.
No ifs, no buts.
Your blkid and fstab data indicates you are not giving us the full info. The find response confirms it.
Looks like you have done (at least) two installs in addition to (physically) moving the disk.
Go get the bootinfo script from sf.net and run it (from the liveCD is o.k.) - post the RESULTS.txt
|
|
|
05-24-2009, 02:07 AM
|
#5
|
Moderator
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417
|
Seems I'm wrong again. ho hum. I will say for certain though that fstab will never get used by grub.
|
|
|
05-25-2009, 10:26 AM
|
#6
|
Member
Registered: Sep 2006
Location: Inkster, MI USA
Distribution: Ubuntu
Posts: 31
Original Poster
Rep:
|
Quote:
Originally Posted by syg00
You are mistaken.
Grub sees the first (BIOS recognised) disk as hd0.
No ifs, no buts.
Your blkid and fstab data indicates you are not giving us the full info. The find response confirms it.
Looks like you have done (at least) two installs in addition to (physically) moving the disk.
Go get the bootinfo script from sf.net and run it (from the liveCD is o.k.) - post the RESULTS.txt
|
OK, here it is:
Code:
============================= Boot Info Summary: ==============================
=> Grub0.97 is installed in the MBR of /dev/sda and looks on the same drive
in partition #5 for /boot/grub/stage2 and /boot/grub/menu.lst.
sda1: _________________________________________________________________________
File system: ext3
Boot sector type: Grub
Boot sector info: Grub0.97 is installed in the boot sector of sda1 and
looks at sector 736182375 of the same hard drive for
the stage2 file. A stage2 file is at this location on
/dev/sda. Stage2 looks on partition #1 for
/boot/grub/menu.lst.
Operating System: Ubuntu 8.04.2
Boot files/dirs: /boot/grub/menu.lst /etc/fstab
sda2: _________________________________________________________________________
File system: Extended Partition
Boot sector type: -
Boot sector info:
sda5: _________________________________________________________________________
File system: ext3
Boot sector type: -
Boot sector info:
Operating System: Ubuntu 9.04
Boot files/dirs: /boot/grub/menu.lst /etc/fstab
sda6: _________________________________________________________________________
File system: swap
Boot sector type: -
Boot sector info:
sda7: _________________________________________________________________________
File system: swap
Boot sector type: -
Boot sector info:
=========================== Drive/Partition Info: =============================
Drive: sda ___________________ _____________________________________________________
Disk /dev/sda: 400.0 GB, 400088457216 bytes
255 heads, 63 sectors/track, 48641 cylinders, total 781422768 sectors
Units = sectors of 1 * 512 = 512 bytes
Disk identifier: 0x13f1cf34
Partition Boot Start End Size Id System
/dev/sda1 * 63 773,160,254 773,160,192 83 Linux
/dev/sda2 773,160,318 781,417,664 8,257,347 f W95 Ext d (LBA)
/dev/sda5 773,160,381 778,044,014 4,883,634 83 Linux
/dev/sda6 778,044,078 778,397,444 353,367 82 Linux swap / Solaris
/dev/sda7 778,397,508 781,417,664 3,020,157 82 Linux swap / Solaris
blkid -c /dev/null: ____________________________________________________________
/dev/sda1: UUID="9b7f81f4-686b-42fb-9e20-e2b88f21bd43" TYPE="ext3"
/dev/sda5: UUID="8324db06-ef32-456a-a8bb-1f7df4d45e2d" TYPE="ext3"
/dev/sda6: TYPE="swap" UUID="a6680bb8-3314-49db-8d5e-61ba9e3ca5f1"
/dev/sda7: TYPE="swap" UUID="ebf47197-4df0-4a56-8491-4b4bd74571ab"
/dev/loop0: TYPE="squashfs"
=============================== "mount" output: ===============================
proc on /proc type proc (rw)
sysfs on /sys type sysfs (rw)
tmpfs on /lib/modules/2.6.24-16-generic/volatile type tmpfs (rw,mode=0755)
tmpfs on /lib/modules/2.6.24-16-generic/volatile type tmpfs (rw,mode=0755)
varrun on /var/run type tmpfs (rw,noexec,nosuid,nodev,mode=0755)
varlock on /var/lock type tmpfs (rw,noexec,nosuid,nodev,mode=1777)
udev on /dev type tmpfs (rw,mode=0755)
devshm on /dev/shm type tmpfs (rw)
devpts on /dev/pts type devpts (rw,gid=5,mode=620)
tmpfs on /tmp type tmpfs (rw,nosuid,nodev)
gvfs-fuse-daemon on /home/ubuntu/.gvfs type fuse.gvfs-fuse-daemon (rw,nosuid,nodev,user=ubuntu)
/dev/sda1 on /media/disk type ext3 (rw,nosuid,nodev,uhelper=hal)
/dev/sda5 on /media/disk-1 type ext3 (rw,nosuid,nodev,uhelper=hal)
gvfs-fuse-daemon on /root/.gvfs type fuse.gvfs-fuse-daemon (rw,nosuid,nodev)
=========================== sda1/boot/grub/menu.lst: ===========================
default saved
fallback 1
timeout 5
color light-gray/black light-green/black
title Ubuntu 8.04.2, kernel 2.6.24-24-generic
root (hd0,0)
kernel /boot/vmlinuz-2.6.24-24-generic root=UUID=9b7f81f4-686b-42fb-9e20-e2b88f21bd43 ro quiet nosplash
initrd /boot/initrd.img-2.6.24-24-generic
quiet
title Ubuntu 8.04.2, kernel 2.6.24-24-generic (recovery mode)
root (hd0,0)
kernel /boot/vmlinuz-2.6.24-24-generic root=UUID=9b7f81f4-686b-42fb-9e20-e2b88f21bd43 ro single
initrd /boot/initrd.img-2.6.24-24-generic
title Ubuntu 8.04.2, memtest86+
root (hd0,0)
kernel /boot/memtest86+.bin
quiet
title Ubuntu 8.04.2, (hd0,0)
root (hd0,0)
kernel /boot/vmlinuz-2.6.24-24-generic root=UUID=9b7f81f4-686b-42fb-9e20-e2b88f21bd43 ro quiet nosplash
initrd /boot/initrd.img-2.6.24-24-generic
quiet
=============================== sda1/etc/fstab: ===============================
# /etc/fstab: static file system information.
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0
# /dev/sda1
UUID=9b7f81f4-686b-42fb-9e20-e2b88f21bd43 / ext3 relatime,errors=remount-ro 0 1
# /dev/sda5
UUID=ebf47197-4df0-4a56-8491-4b4bd74571ab 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/fd0 /media/floppy0 auto rw,user,noauto,exec,utf8 0 0
=================== sda1: Location of files loaded by Grub: ===================
376.9GB: boot/grub/menu.lst
376.9GB: boot/grub/stage2
376.8GB: boot/initrd.img-2.6.24-19-386
376.7GB: boot/initrd.img-2.6.24-19-386.bak
376.8GB: boot/initrd.img-2.6.24-19-generic
376.7GB: boot/initrd.img-2.6.24-19-generic.bak
376.7GB: boot/initrd.img-2.6.24-20-generic
376.7GB: boot/initrd.img-2.6.24-20-generic.bak
376.8GB: boot/initrd.img-2.6.24-21-generic
376.8GB: boot/initrd.img-2.6.24-21-generic.bak
376.8GB: boot/initrd.img-2.6.24-22-generic
376.8GB: boot/initrd.img-2.6.24-22-generic.bak
376.7GB: boot/initrd.img-2.6.24-23-generic
376.8GB: boot/initrd.img-2.6.24-23-generic.bak
376.8GB: boot/initrd.img-2.6.24-24-generic
376.8GB: boot/initrd.img-2.6.24-24-generic.bak
376.7GB: boot/vmlinuz-2.6.24-19-386
376.8GB: boot/vmlinuz-2.6.24-19-generic
376.8GB: boot/vmlinuz-2.6.24-20-generic
376.8GB: boot/vmlinuz-2.6.24-21-generic
376.8GB: boot/vmlinuz-2.6.24-22-generic
376.8GB: boot/vmlinuz-2.6.24-23-generic
376.8GB: boot/vmlinuz-2.6.24-24-generic
376.8GB: initrd.img
376.7GB: initrd.img.old
376.8GB: vmlinuz
376.8GB: vmlinuz.old
=========================== sda5/boot/grub/menu.lst: ===========================
# menu.lst - See: grub(8), info grub, update-grub(8)
# grub-install(8), grub-floppy(8),
# grub-md5-crypt, /usr/share/doc/grub
# and /usr/share/doc/grub-doc/.
## default num
# Set the default entry to the entry number NUM. Numbering starts from 0, and
# the entry number 0 is the default if the command is not used.
#
# You can specify 'saved' instead of a number. In this case, the default entry
# is the entry saved with the command 'savedefault'.
# WARNING: If you are using dmraid do not use 'savedefault' or your
# array will desync and will not let you boot your system.
default 0
## timeout sec
# Set a timeout, in SEC seconds, before automatically booting the default entry
# (normally the first entry defined).
timeout 10
## hiddenmenu
# Hides the menu by default (press ESC to see the menu)
#hiddenmenu
# Pretty colours
#color cyan/blue white/blue
## password ['--md5'] passwd
# If used in the first section of a menu file, disable all interactive editing
# control (menu entry editor and command-line) and entries protected by the
# command 'lock'
# e.g. password topsecret
# password --md5 $1$gLhU0/$aW78kHK1QfV3P2b2znUoe/
# password topsecret
#
# examples
#
# title Windows 95/98/NT/2000
# root (hd0,0)
# makeactive
# chainloader +1
#
# title Linux
# root (hd0,1)
# kernel /vmlinuz root=/dev/hda2 ro
#
#
# Put static boot stanzas before and/or after AUTOMAGIC KERNEL LIST
### BEGIN AUTOMAGIC KERNELS LIST
## lines between the AUTOMAGIC KERNELS LIST markers will be modified
## by the debian update-grub script except for the default options below
## DO NOT UNCOMMENT THEM, Just edit them to your needs
## ## Start Default Options ##
## default kernel options
## default kernel options for automagic boot options
## If you want special options for specific kernels use kopt_x_y_z
## where x.y.z is kernel version. Minor versions can be omitted.
## e.g. kopt=root=/dev/hda1 ro
## kopt_2_6_8=root=/dev/hdc1 ro
## kopt_2_6_8_2_686=root=/dev/hdc2 ro
# kopt=root=UUID=8324db06-ef32-456a-a8bb-1f7df4d45e2d ro
## default grub root device
## e.g. groot=(hd0,0)
# groot=8324db06-ef32-456a-a8bb-1f7df4d45e2d
## should update-grub create alternative automagic boot options
## e.g. alternative=true
## alternative=false
# alternative=true
## should update-grub lock alternative automagic boot options
## e.g. lockalternative=true
## lockalternative=false
# lockalternative=false
## additional options to use with the default boot option, but not with the
## alternatives
## e.g. defoptions=vga=791 resume=/dev/hda5
# defoptions=quiet splash
## should update-grub lock old automagic boot options
## e.g. lockold=false
## lockold=true
# lockold=false
## Xen hypervisor options to use with the default Xen boot option
# xenhopt=
## Xen Linux kernel options to use with the default Xen boot option
# xenkopt=console=tty0
## altoption boot targets option
## multiple altoptions lines are allowed
## e.g. altoptions=(extra menu suffix) extra boot options
## altoptions=(recovery) single
# altoptions=(recovery mode) single
## controls how many kernels should be put into the menu.lst
## only counts the first occurence of a kernel, not the
## alternative kernel options
## e.g. howmany=all
## howmany=7
# howmany=all
## specify if running in Xen domU or have grub detect automatically
## update-grub will ignore non-xen kernels when running in domU and vice versa
## e.g. indomU=detect
## indomU=true
## indomU=false
# indomU=detect
## should update-grub create memtest86 boot option
## e.g. memtest86=true
## memtest86=false
# memtest86=true
## should update-grub adjust the value of the default booted system
## can be true or false
# updatedefaultentry=false
## should update-grub add savedefault to the default options
## can be true or false
# savedefault=false
## ## End Default Options ##
title Ubuntu 9.04, kernel 2.6.28-11-generic
uuid 8324db06-ef32-456a-a8bb-1f7df4d45e2d
kernel /boot/vmlinuz-2.6.28-11-generic root=UUID=8324db06-ef32-456a-a8bb-1f7df4d45e2d ro quiet splash
initrd /boot/initrd.img-2.6.28-11-generic
quiet
title Ubuntu 9.04, kernel 2.6.28-11-generic (recovery mode)
uuid 8324db06-ef32-456a-a8bb-1f7df4d45e2d
kernel /boot/vmlinuz-2.6.28-11-generic root=UUID=8324db06-ef32-456a-a8bb-1f7df4d45e2d ro single
initrd /boot/initrd.img-2.6.28-11-generic
title Ubuntu 9.04, memtest86+
uuid 8324db06-ef32-456a-a8bb-1f7df4d45e2d
kernel /boot/memtest86+.bin
quiet
### END DEBIAN AUTOMAGIC KERNELS LIST
# This is a divider, added to separate the menu items below from the Debian
# ones.
title Other operating systems:
root
# This entry automatically added by the Debian installer for an existing
# linux installation on /dev/sda1.
title Ubuntu 8.04.2, kernel 2.6.24-24-generic (on /dev/sda1)
root (hd0,0)
kernel /boot/vmlinuz-2.6.24-24-generic root=UUID=9b7f81f4-686b-42fb-9e20-e2b88f21bd43 ro quiet nosplash
initrd /boot/initrd.img-2.6.24-24-generic
savedefault
boot
# This entry automatically added by the Debian installer for an existing
# linux installation on /dev/sda1.
title Ubuntu 8.04.2, kernel 2.6.24-24-generic (recovery mode) (on /dev/sda1)
root (hd0,0)
kernel /boot/vmlinuz-2.6.24-24-generic root=UUID=9b7f81f4-686b-42fb-9e20-e2b88f21bd43 ro single
initrd /boot/initrd.img-2.6.24-24-generic
savedefault
boot
# This entry automatically added by the Debian installer for an existing
# linux installation on /dev/sda1.
title Ubuntu 8.04.2, memtest86+ (on /dev/sda1)
root (hd0,0)
kernel /boot/memtest86+.bin
savedefault
boot
# This entry automatically added by the Debian installer for an existing
# linux installation on /dev/sda1.
title Ubuntu 8.04.2, (hd1,0) (on /dev/sda1)
root (hd0,0)
kernel /boot/vmlinuz-2.6.24-24-generic root=UUID=9b7f81f4-686b-42fb-9e20-e2b88f21bd43 ro quiet nosplash
initrd /boot/initrd.img-2.6.24-24-generic
savedefault
boot
=============================== sda5/etc/fstab: ===============================
# /etc/fstab: static file system information.
#
# Use 'vol_id --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/sda6 during installation
UUID=8324db06-ef32-456a-a8bb-1f7df4d45e2d / ext3 relatime,errors=remount-ro 0 1
# swap was on /dev/sda7 during installation
UUID=a6680bb8-3314-49db-8d5e-61ba9e3ca5f1 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
=================== sda5: Location of files loaded by Grub: ===================
396.4GB: boot/grub/menu.lst
396.4GB: boot/grub/stage2
396.4GB: boot/initrd.img-2.6.28-11-generic
396.4GB: boot/vmlinuz-2.6.28-11-generic
396.4GB: initrd.img
396.4GB: vmlinuz
I tried installing Jaunty in free space on the disk in an effort to repair grub. Obviously, it didn't work  .
Thanks,
Tim
|
|
|
05-25-2009, 04:33 PM
|
#7
|
LQ Veteran
Registered: Aug 2003
Location: Australia
Distribution: Lots ...
Posts: 21,357
|
Interesting - try this.
From the boot menu, highlight the Jaunty entry and hit enter. Edit the UUID line to completely replace it with "root (hd0,4)" (no quotes). Hit enter to write the changes.
Then edit the kernel line so the "root=UUID=..." keyword now says "root=/dev/sda5"
Then "b" to see if it will boot.
|
|
|
05-26-2009, 03:32 AM
|
#8
|
Member
Registered: Sep 2006
Location: Inkster, MI USA
Distribution: Ubuntu
Posts: 31
Original Poster
Rep:
|
Quote:
Originally Posted by syg00
Interesting - try this.
From the boot menu, highlight the Jaunty entry and hit enter. Edit the UUID line to completely replace it with "root (hd0,4)" (no quotes). Hit enter to write the changes.
Then edit the kernel line so the "root=UUID=..." keyword now says "root=/dev/sda5"
Then "b" to see if it will boot.
|
Ouch - now I get 'error 5', meaning (I think) that grub thinks the partition table is bad. I have not gotten as far as the boot menu since I switched the drive over to the second channel.
|
|
|
05-29-2009, 07:18 PM
|
#9
|
Member
Registered: Sep 2006
Location: Inkster, MI USA
Distribution: Ubuntu
Posts: 31
Original Poster
Rep:
|
Problem Solved
Problem solved. Cleared the BIOS CMOS, and the IDE channel woke up again.
Thanks!
Tim
Quote:
Originally Posted by kc8hr
My primary IDE channel died, so I plugged my Ubuntu Hardy drive into the second IDE channel as master, and the BIOS sees it fine.
But now when I try to boot, I get 'error 15'. Here is the output of fdisk -l:
Code:
Device Boot Start End Blocks Id System
/dev/sda1 * 1 48127 386580096 83 Linux
/dev/sda2 48128 48641 4128673+ f W95 Ext'd (LBA)
/dev/sda5 48128 48431 2441817 83 Linux
/dev/sda6 48432 48453 176683+ 82 Linux swap / Solaris
/dev/sda7 48454 48641 1510078+ 82 Linux swap / Solaris
The output of blkid is:
Code:
/dev/sda1: UUID="9b7f81f4-686b-42fb-9e20-e2b88f21bd43" SEC_TYPE="ext2" TYPE="ext3"
/dev/sda5: UUID="8324db06-ef32-456a-a8bb-1f7df4d45e2d" SEC_TYPE="ext2" TYPE="ext3"
/dev/sda6: TYPE="swap" UUID="a6680bb8-3314-49db-8d5e-61ba9e3ca5f1"
/dev/sda7: TYPE="swap" UUID="ebf47197-4df0-4a56-8491-4b4bd74571ab"
/dev/loop0: TYPE="squashfs"
/etc/fstab:
Code:
# /etc/fstab: static file system information.
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0
# /dev/sda1
UUID=9b7f81f4-686b-42fb-9e20-e2b88f21bd43 / ext3 relatime,errors=remount-ro 0 1
# /dev/sda5
UUID=ebf47197-4df0-4a56-8491-4b4bd74571ab 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/fd0 /media/floppy0 auto rw,user,noauto,exec,utf8 0 0
Now, if I am not mistaken, the master device on the second IDE channel should be "/dev/hdc", which grub should see as hd(3)?
I am completely confused, can anybody find a solution? I stumped them over on Ubuntu Forums.
Thanks,
Tim
|
|
|
|
All times are GMT -5. The time now is 01:09 AM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|