Results 1 to 6 of 6

Thread: Missing Operating System

  1. #1
    Junior Member registered user
    Join Date
    Mar 2003
    Location
    HRL
    Posts
    11

    Missing Operating System

    I tried doing an HD install on the lap top a few times and everytime i get the Missing OS error.

    I was having trouble with LilO, i had to comment out Line 20, the "Please edit lilo" line. and now i am getting a /proc/partitions error. i dont think that Lilo is getting written to the MBR.

    i am using knoppix 3.3 as a single boot.

    i tried my best searching and researching here on the forums, and now i am wasted and will try again tomorrow.

    Will post my Lilo.conf tomorrow if need be.

    any ideas?'

  2. #2
    Senior Member registered user
    Join Date
    Mar 2003
    Location
    colorado springs, colorado
    Posts
    1,933
    Boot the Knoppix cd, mount your /root partition and reinstall lilo. This post may clarify the process further. There are several posts like this one that may explain it further.

  3. #3
    Junior Member registered user
    Join Date
    Mar 2003
    Location
    HRL
    Posts
    11
    this is my lilo.conf as it is created by the knoppix-installer

    Code:
    # /etc/lilo.conf - See: `lilo(8)' and `lilo.conf(5)',
    # ---------------       `install-mbr(8)', `/usr/share/doc/lilo/',
    #                       and `/usr/share/doc/mbr/'.
    
    # Remove this line when you are done configuring. -KK
    "! Please edit /etc/lilo.conf before running lilo!"
    
    # +---------------------------------------------------------------+
    # |                        !! Reminder !!                         |
    # |                                                               |
    # | Don't forget to run `lilo' after you make changes to this     |
    # | conffile, `/boot/bootmess.txt', or install a new kernel.  The |
    # | computer will most likely fail to boot if a kernel-image      |
    # | post-install script or you don't remember to run `lilo'.      |
    # |                                                               |
    # +---------------------------------------------------------------+
    
    # Support LBA for large hard disks.
    #
    lba32
    
    # Specifies the boot device.  This is where Lilo installs its boot
    # block.  It can be either a partition, or the raw device, in which
    # case it installs in the MBR, and will overwrite the current MBR.
    #
    boot=/dev/hda
    
    # Specifies the device that should be mounted as root. (`/')
    #
    
    # Enable map compaction:
    # Tries to merge read requests for adjacent sectors into a single
    # read request. This drastically reduces load time and keeps the
    # map smaller.  Using `compact' is especially recommended when
    # booting from a floppy disk.  It is disabled here by default
    # because it doesn't always work.
    #
    # compact
    
    # Installs the specified file as the new boot sector
    #
    install=/boot/boot-menu.b
    backup=/dev/null
    
    # Specifies the location of the map file
    #
    map=/boot/map
    
    # You can set a password here, and uncomment the `restricted' lines
    # in the image definitions below to make it so that a password must
    # be typed to boot anything but a default configuration.  If a
    # command line is given, other than one specified by an `append'
    # statement in `lilo.conf', the password will be required, but a
    # standard default boot will not require one.
    #
    # This will, for instance, prevent anyone with access to the
    # console from booting with something like `Linux init=/bin/sh',
    # and thus becoming `root' without proper authorization.
    #
    # Note that if you really need this type of security, you will
    # likely also want to use `install-mbr' to reconfigure the MBR
    # program, as well as set up your BIOS to disallow booting from
    # removable disk or CD-ROM, then put a password on getting into the
    # BIOS configuration as well.  Please RTFM `install-mbr(8)'.
    #
    # password=tatercounter2000
    
    # Specifies the number of deciseconds (0.1 seconds) LILO should
    # wait before booting the first image.
    #
    # delay=20
    timeout=100
    
    # You can put a customized boot message up if you like.  If you use
    # `prompt', and this computer may need to reboot unattended, you
    # must specify a `timeout', or it will sit there forever waiting
    # for a keypress.  `single-key' goes with the `alias' lines in the
    # `image' configurations below.  eg: You can press `1' to boot
    # `Linux', `2' to boot `LinuxOLD', if you uncomment the `alias'.
    #
    # message=/boot/bootmess.txt
    #	prompt
    #	single-key
    #	delay=100
    #	timeout=100
    
    # Specifies the VGA text mode at boot time. (normal, extended, ask, <mode>)
    #
    # vga=ask
    # vga=9
    #
    vga=normal
    
    # Kernel command line options that apply to all installed images go
    # here.  See: The `boot-prompt-HOWO' and `kernel-parameters.txt' in
    # the Linux kernel `Documentation' directory.
    #
    # append=""
    
    # Boot up Linux by default.
    #
    default=Knoppix
    
    image=/vmlinuz
    	append="lang=de apm=power-off hda=scsi hdb=scsi hdc=scsi hdd=scsi hde=scsi hdf=scsi hdg=scsi hdh=scsi vga=791 quiet BOOT_IMAGE=knoppix"
    	root=/dev/hda5
    	label=Knoppix
    	read-write
    #	restricted
    #	alias=1
    
    #image=/vmlinuz.old
    #	label=Linux-OLD
    #	read-only
    #	optional
    #	restricted
    #	alias=2
    
    # If you have another OS on this machine to boot, you can uncomment the
    # following lines, changing the device name on the `other' line to
    # where your other OS' partition is.
    #
    # other=/dev/hda4
    #	label=HURD
    #	restricted
    #	alias=3


    i was first getting an error that required me to comment out this line:

    "! Please edit /etc/lilo.conf before running lilo!"

    after fixing that and try to reinstall lilo i get the following error:

    Code:
     reading boot sector from /dev/hda
    Warning: 'proc/partitions' does not exist, disk scan bypassed
    Using MENU secondary loader
    Calling map_insert_data
    
    Fatal: APPEND or LITERAL may not contain "vga="
    i noticed in this line:

    Code:
    default=Knoppix
    
    image=/vmlinuz
    	append="lang=de apm=power-off hda=scsi hdb=scsi hdc=scsi hdd=scsi hde=scsi hdf=scsi hdg=scsi hdh=scsi vga=791 quiet BOOT_IMAGE=knoppix"
    	root=/dev/hda5
    	label=Knoppix
    	read-write
    its pointing root to /dev/hda5 but i dont have an hda5, just an hda1(root 83) and hda2(swap 82)

    also the lang=de.

    any help would be highly appreciated!

    thanks..

    --Sal-

  4. #4
    Junior Member registered user
    Join Date
    Mar 2003
    Location
    HRL
    Posts
    11
    when i posted this i noticed these lines:

    Code:
    append="lang=de apm=power-off hda=scsi hdb=scsi hdc=scsi hdd=scsi hde=scsi hdf=scsi hdg=scsi hdh=scsi vga=791 quiet
    now it looks like this:

    Code:
    append="lang=en apm=power-off vga=791 quiet BOOT_IMAGE=knoppix"

    now it is trying to boot it but i am getting

    The superblock could not be read or does not describe a correct ext2 filesystem......

    fsck failed. Please repair manually and reboot.

    i am using ext3 as the filesystem.

    Should i use ext2? or can this be fixed.

    i will research some...

    --Sal-

  5. #5
    Senior Member registered user
    Join Date
    Mar 2003
    Location
    colorado springs, colorado
    Posts
    1,933
    That lilo.conf you posted will never work. It looks as though it's the one from the cd and not your hdd install. No matter. Here's mine. As you can see you need an entry for boot. If you have only 1 drive or Knoppix installed to the first drive it will be /dev/hda. Secondly you will need an entry for /root. This is the partition that you actually installed Knoppix to. The bitmap entries are for a lilo splash screen. Not necessary but it looks good. Use the post I linked earlier to reinstall lilo.


    vga=791
    lba32
    boot=/dev/hda
    root=/dev/hda3
    #install=/boot/boot-menu.b
    bitmap=/usr/share/lilo/contrib/sid.bmp
    bmp-colors=1,,0,2,,0
    bmp-table=120p,173p,1,15,17
    bmp-timer=254p,432p,1,0,0
    install=/boot/boot-bmp.b
    map=/boot/map

    delay=200
    # message=/boot/bootmess.txt
    prompt
    # single-key
    # delay=100
    timeout=100

    append="hda=scsi hdb=scsi hdc=scsi hdd=scsi hde=scsi hdf=scsi hdg=scsi hdh=scsi
    apm=power-off nomce"
    default=Debian

    image=/boot/vmlinuz-2.4.20-xfs
    label=Debian
    initrd=/boot/initrd.gz
    read-only

  6. #6
    Junior Member registered user
    Join Date
    Mar 2003
    Location
    HRL
    Posts
    11
    it appears to be working a little better now with your lilo but i am getting fsck failed. I am also getting error that my /etc/fstab does not contain trhe fsck passno field

    I got this before and i deleted the root partition and recreated, with qtparted thinking that would fix it. But I am still getting it.

    I got once before i used ricks lilo and now i am getting it again.

    i used ext2 as the file system this time around.

    i am so close i believe! i have learned a lot so far.....

    error says to fix manually but not to sure how. Off to read more...

    any ideas?

Similar Threads

  1. No operating system after install... with a twist
    By Raenon in forum Hdd Install / Debian / Apt
    Replies: 0
    Last Post: 06-21-2005, 06:40 AM
  2. Missing file
    By Kellymyrick in forum General Support
    Replies: 1
    Last Post: 07-16-2004, 11:52 PM
  3. operating frequency out of range
    By mppdrake in forum General Support
    Replies: 3
    Last Post: 05-28-2004, 12:11 PM
  4. Can't find operating system during boot
    By DrWhom in forum Hdd Install / Debian / Apt
    Replies: 4
    Last Post: 03-14-2004, 09:42 PM
  5. No root file system (but system works)
    By freyley in forum Hdd Install / Debian / Apt
    Replies: 1
    Last Post: 01-31-2003, 09:21 AM

Posting Permissions

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


Cisco Systems NCS2K-20-SMRFS-L optical multiplexor CISCO EXCESS picture

Cisco Systems NCS2K-20-SMRFS-L optical multiplexor CISCO EXCESS

$3599.00



Cisco SG110 24 Port Gigabit Ethernet Switch w/ 2 x SFP SG110-24 picture

Cisco SG110 24 Port Gigabit Ethernet Switch w/ 2 x SFP SG110-24

$117.00



Cisco RV160 VPN Router 4 Gigabit Ethernet Ports RV160-K9-AR picture

Cisco RV160 VPN Router 4 Gigabit Ethernet Ports RV160-K9-AR

$80.00



CISCO SFP-10G-ER 10-2531-02 10GBASE-ER SFP+ 10G 1550nm 40km 1PCS picture

CISCO SFP-10G-ER 10-2531-02 10GBASE-ER SFP+ 10G 1550nm 40km 1PCS

$135.00



Cisco WS-C3850-48P-L 48-Port Gigabit 3850 PoE Switch w/ 715W+ C3850-NM-4-1G Mod picture

Cisco WS-C3850-48P-L 48-Port Gigabit 3850 PoE Switch w/ 715W+ C3850-NM-4-1G Mod

$83.00



Cisco Catalyst WS-C2960-48TT-L V02 48 Port Fast Ethernet Switch picture

Cisco Catalyst WS-C2960-48TT-L V02 48 Port Fast Ethernet Switch

$34.00



Cisco C3850-NM-2-10G 2 Port Network Exp.Module for 3850 picture

Cisco C3850-NM-2-10G 2 Port Network Exp.Module for 3850

$38.99



Cisco WS-C4948-10GE-S 4948-10GE 48 Port Gigabit +10GB Switch w single AC 15.0 OS picture

Cisco WS-C4948-10GE-S 4948-10GE 48 Port Gigabit +10GB Switch w single AC 15.0 OS

$99.99



Cisco C9300-48 48 Port Switch Dual PSU W/C9300-NM-8X P/N: C9300-48U-A Tested picture

Cisco C9300-48 48 Port Switch Dual PSU W/C9300-NM-8X P/N: C9300-48U-A Tested

$799.99



Cisco WS-C3850-48P-L 48-Port Gigabit 3850 PoE Switch w/ 715W Network Switch picture

Cisco WS-C3850-48P-L 48-Port Gigabit 3850 PoE Switch w/ 715W Network Switch

$41.64