This are two differnet problems. The second one is the spurious IRQ7, which is annoying, but harmless. The first and major problem is that the Linux kernel expects its root system on the device with major device number 0x16, minor device number 0x03, i.e. IDE secondary master, partition 3, commonly known as /dev/hdc3. This may be the hardcoded default compiled into the kernel, or it may come from a "root" parameter passed by the boot loader (grub, lilo, syslinux, ...). If the system uses SATA, and you have fiddled with the BIOS Setup or the Linux kernel, the kernel may now see the same partition as /dev/sda3 or /dev/sdb3 due to SATA support. For a system with only one hard disk, the disk is typically /dev/hda or /dev/sda, and the third partition on it is called /dev/hda3 or /dev/sda3. So tell the boot loader (at the boot prompt) to append a "root=/dev/hda3" or a "root=/dev/sda3" to the current boot options. If Linux is really on a second or third disk, use /dev/hdb3, /dev/hdc3, /dev/sdb3, /dev/sdc3 instead.

Alexander

--
Today I will gladly share my knowledge and experience, for there are no sweeter words than "I told you so". ;-)

In reply to Re: OT: System is not booting by afoken
in thread OT: System is not booting by vinoth.ree

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.