Find the answer to your Linux question:
Page 1 of 3 1 2 3 LastLast
Results 1 to 10 of 23
I have installed ubuntu on my laptop (see this link for all of the juicy details) http://www.linuxforums.org/forum/ubu...d-windoze.html Now when I start my computer up I get this error: Insert system ...
  1. #1
    Just Joined!
    Join Date
    Apr 2009
    Posts
    64

    [SOLVED] Start up error

    I have installed ubuntu on my laptop (see this link for all of the juicy details) http://www.linuxforums.org/forum/ubu...d-windoze.html
    Now when I start my computer up I get this error:
    Insert system disk in drive.
    Press any key when ready.

  2. #2
    Just Joined!
    Join Date
    Apr 2009
    Posts
    64
    I have been researching this problem and I think that my master boot record is corrupt. Might have happened during the many times the install froze up.
    If anyone has any insight or clarity on this please let me know.

  3. #3
    Linux Guru
    Join Date
    Oct 2007
    Location
    Tucson AZ
    Posts
    1,946
    Haven't read your other post but it could be the mbr corrupt, not partitioned or formatted or the simplest, a non-bootable floppy in the drive.

  4. #4
    Linux Guru
    Join Date
    Jan 2009
    Location
    Dover, NH
    Posts
    1,633
    Or the MBR does not contain boot code, so it looks for it in the first track of the "active" partition, which I suspect now no longer exists.

    Please boot with your live CD, open a terminal window, and post the output of
    sudo fdisk -l (that's FDISK -L in lower case).

  5. #5
    Linux Guru Rubberman's Avatar
    Join Date
    Apr 2009
    Location
    I can be found either 40 miles west of Chicago, or in a galaxy far, far away.
    Posts
    8,975
    Quote Originally Posted by D-cat View Post
    Or the MBR does not contain boot code, so it looks for it in the first track of the "active" partition, which I suspect now no longer exists.

    Please boot with your live CD, open a terminal window, and post the output of
    sudo fdisk -l (that's FDISK -L in lower case).
    Actually, that's what the default bootloader does. It reads sector 0 of the disc (the boot loader + partition table), finds the active partition, loads the first sector of that, relocates and executes that code, which then knows where to find the real operating system. It is possible that the BIOS, not finding any valid boot code in sector 0 will do that itself. I don't know since the last time I wrote a PC boot loader was in 1986-87. You'd be amazed what you can do in under 500 bytes of machine code! Just so you know, the boot sector is only 512 bytes, including the partition table.
    Sometimes, real fast is almost as good as real time.
    Just remember, Semper Gumbi - always be flexible!

  6. #6
    Linux Guru
    Join Date
    Jan 2009
    Location
    Dover, NH
    Posts
    1,633
    Even in the absence of a boot loader in the MBR, the BIOS will still seek out the first sector of the active partition. If there is no active partition or no boot code in it, and no other BIOS defined boot devices located, then the above message will be displayed.

    I've been working with computers since the Apple ][e. Yes, you can stick the boot loader in the active partition, which is the right way to do it IMO; makes other OS installs wiping the MBR a non-issue. But, since that's not the way it's normally done any more, we have tools like SuperGrub! ...which will likely be used to fix this problem providing that the linux partition is still in tact.

  7. #7
    Linux Guru Rubberman's Avatar
    Join Date
    Apr 2009
    Location
    I can be found either 40 miles west of Chicago, or in a galaxy far, far away.
    Posts
    8,975
    Quote Originally Posted by D-cat View Post
    Even in the absense of a boot loader in the MBR, the BIOS will still seek out the first sector of the active partition. If there is no active partition or no boot code in it, and no other BIOS defined boot devices located, then the above message will be displayed.

    I've been working with computers since the Apple ][e. Yes, you can stick the boot loader in the active partition, which is the right way to do it IMO; makes other OS installs wiping the MBR a non-issue. But, since that's not the way it's normally done any more, we have tools like SuperGrub! ...which will likely be used to fix this problem providing that the linux partition is still in tact.
    Sounds rational to me. Like I said, my last stint writing boot loaders was back in the mid-80's. Things have changed (sometimes for the better) in the past 20-25 years...
    Sometimes, real fast is almost as good as real time.
    Just remember, Semper Gumbi - always be flexible!

  8. #8
    Just Joined!
    Join Date
    Apr 2009
    Posts
    64
    Here is what fdisk popped out.
    Disk /dev/sda: 40.0 GB, 40007761920 bytes
    255 heads, 63 sectors/track, 4864 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes
    Disk identifier: 0x8b798b79

    Device Boot Start End Blocks Id System
    /dev/sda1 1 160 1285168+ 83 Linux
    /dev/sda2 161 4864 37784880 5 Extended
    /dev/sda5 4684 4864 1453851 82 Linux swap / Solaris
    /dev/sda6 161 4502 34877052 83 Linux
    /dev/sda7 4503 4683 1453851 82 Linux swap / Solaris

    Partition table entries are not in disk order

  9. #9
    Linux Guru
    Join Date
    Oct 2007
    Location
    Tucson AZ
    Posts
    1,946
    You have two Linux partitions, sda1 and sda6. Assuming sda1 has your system files and sda6 is a /home or other partitions, load your installation CD and run the command 'sudo grub' in a terminal to get the Grub prompt (grub>). Then type:

    root (hd0,0)
    setup (hd0)
    quit

    If you system files are on sda6, change the entries accordingly. If this fails, post any error messages you get. You could try mounting your partitions with your install CD:

    sudo mkdir /mnt/ubuntu
    sudo mount -t ext3 /dev/sda1 /mnt/ubuntu

    Then navigate to the newly created ubuntu directory to see if boot files are there.

    ls -l /mnt/ubuntu

    Post any error messages if you don't get results.

  10. #10
    Just Joined!
    Join Date
    Apr 2009
    Posts
    64
    Quote Originally Posted by yancek View Post
    sniped:
    If you system files are on sda6, change the entries accordingly.
    Change the entries accordingly how?

Page 1 of 3 1 2 3 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...