RE: booting an intel 815 fc3 without monitor

From: bruce (bedouglas_at_earthlink.net)
Date: 03/18/05

  • Next message: Richard E Miles: "Re: boot in a floppy!"
    To: "'Jim Cornette'" <fc-cornette@insight.rr.com>, "'For users of Fedora Core releases'" <fedora-list@redhat.com>
    Date: Fri, 18 Mar 2005 13:39:46 -0800
    
    

    ok...

    it now appears to work. i started out with a problem where the monitor was
    going crazy during the install prcess, followed by not being able to boot
    without the monitor being plugged in.

    i have an intel815 motherboard.

    here's what i have regarding changes i made to my system.
    /etc/inittab
    /etc/grub/conf
    /etc/X11/xorg.conf

    i also changed the display paramaters to be 600x800 from within GNOME.

    --------------------------------------
    etc/inittab
    [root@lserver4 /]# cat etc/inittab
    #
    # inittab This file describes how the INIT process should set up
    # the system in a certain run-level.
    #
    # Author: Miquel van Smoorenburg, <miquels@drinkel.nl.mugnet.org>
    # Modified for RHS Linux by Marc Ewing and Donnie Barnes
    #

    # Default runlevel. The runlevels used by RHS are:
    # 0 - halt (Do NOT set initdefault to this)
    # 1 - Single user mode
    # 2 - Multiuser, without NFS (The same as 3, if you do not have
    networking)
    # 3 - Full multiuser mode
    # 4 - unused
    # 5 - X11
    # 6 - reboot (Do NOT set initdefault to this)
    #
    # b douglas.. changed the following from 5->3 to try to boot
    # without a monitor

    id:3:initdefault:

    # System initialization.
    si::sysinit:/etc/rc.d/rc.sysinit

    l0:0:wait:/etc/rc.d/rc 0
    l1:1:wait:/etc/rc.d/rc 1
    l2:2:wait:/etc/rc.d/rc 2
    l3:3:wait:/etc/rc.d/rc 3
    l4:4:wait:/etc/rc.d/rc 4
    l5:5:wait:/etc/rc.d/rc 5
    l6:6:wait:/etc/rc.d/rc 6

    # Trap CTRL-ALT-DELETE
    ca::ctrlaltdel:/sbin/shutdown -t3 -r now

    # When our UPS tells us power has failed, assume we have a few minutes
    # of power left. Schedule a shutdown for 2 minutes from now.
    # This does, of course, assume you have powerd installed and your
    # UPS connected and working correctly.
    pf::powerfail:/sbin/shutdown -f -h +2 "Power Failure; System Shutting Down"

    # If power was restored before the shutdown kicked in, cancel it.
    pr:12345:powerokwait:/sbin/shutdown -c "Power Restored; Shutdown Cancelled"

    # Run gettys in standard runlevels
    1:2345:respawn:/sbin/mingetty tty1
    2:2345:respawn:/sbin/mingetty tty2
    3:2345:respawn:/sbin/mingetty tty3
    4:2345:respawn:/sbin/mingetty tty4
    5:2345:respawn:/sbin/mingetty tty5
    6:2345:respawn:/sbin/mingetty tty6

    # Run xdm in runlevel 5
    x:5:respawn:/etc/X11/prefdm -nodaemon

    ---------------------------------
    grub.conf
    # grub.conf generated by anaconda
    #
    # Note that you do not have to rerun grub after making changes to this file
    # NOTICE: You have a /boot partition. This means that
    # all kernel and initrd paths are relative to /boot/, eg.
    # root (hd0,0)
    # kernel /vmlinuz-version ro root=/dev/VolGroup00/LogVol00 rhgb
    quiet
    # initrd /initrd-version.img
    #boot=/dev/hda

    #
    #b douglas added params to kernel line.. due to boot without monitor
    #

    default=0
    timeout=5
    splashimage=(hd0,0)/grub/splash.xpm.gz
    hiddenmenu
    title Fedora Core (2.6.9-1.667)
            root (hd0,0)
            kernel /vmlinuz-2.6.9-1.667 ro root=/dev/VolGroup00/LogVol00 quiet
    text noprobe skipddc
            initrd /initrd-2.6.9-1.667.img

    #linux noprobe skipddc nofb vga=0

    ---------------------------------------
    [root@lserver4 /]# cat etc/X11/xorg.conf
    # Xorg configuration created by system-config-display

    Section "ServerLayout"
            Identifier "single head configuration"
            Screen 0 "Screen0" 0 0
            InputDevice "Mouse0" "CorePointer"
            InputDevice "Keyboard0" "CoreKeyboard"
    EndSection

    Section "Files"

    # RgbPath is the location of the RGB database. Note, this is the name of
    the
    # file minus the extension (like ".txt" or ".db"). There is normally
    # no need to change the default.
    # Multiple FontPath entries are allowed (they are concatenated together)
    # By default, Red Hat 6.0 and later now use a font server independent of
    # the X server to render fonts.
            RgbPath "/usr/X11R6/lib/X11/rgb"
            FontPath "unix/:7100"
    EndSection

    Section "Module"
            Load "dbe"
            Load "extmod"
            Load "fbdevhw"
            Load "glx"
            Load "record"
            Load "freetype"
            Load "type1"
            Load "dri"
    EndSection

    Section "InputDevice"

    # Specify which keyboard LEDs can be user-controlled (eg, with xset(1))
    # Option "Xleds" "1 2 3"
    # To disable the XKEYBOARD extension, uncomment XkbDisable.
    # Option "XkbDisable"
    # To customise the XKB settings to suit your keyboard, modify the
    # lines below (which are the defaults). For example, for a non-U.S.
    # keyboard, you will probably want to use:
    # Option "XkbModel" "pc102"
    # If you have a US Microsoft Natural keyboard, you can use:
    # Option "XkbModel" "microsoft"
    #
    # Then to change the language, change the Layout setting.
    # For example, a german layout can be obtained with:
    # Option "XkbLayout" "de"
    # or:
    # Option "XkbLayout" "de"
    # Option "XkbVariant" "nodeadkeys"
    #
    # If you'd like to switch the positions of your capslock and
    # control keys, use:
    # Option "XkbOptions" "ctrl:swapcaps"
    # Or if you just want both to be control, use:
    # Option "XkbOptions" "ctrl:nocaps"
    #
            Identifier "Keyboard0"
            Driver "kbd"
            Option "XkbModel" "pc105"
            Option "XkbLayout" "us"
    EndSection

    Section "InputDevice"
            Identifier "Mouse0"
            Driver "mouse"
            Option "Protocol" "IMPS/2"
            Option "Device" "/dev/input/mice"
            Option "ZAxisMapping" "4 5"
            Option "Emulate3Buttons" "yes"
    EndSection

    Section "Monitor"
            Identifier "Monitor0"
            VendorName "Monitor Vendor"
            ModelName "Unknown monitor"
            HorizSync 31.5 - 37.9
            VertRefresh 50.0 - 70.0
            Option "dpms"
    EndSection

    Section "Device"
            Identifier "Videocard0"
            Driver "i810"
            VendorName "Videocard vendor"
            BoardName "Intel 815"
            Option "NoAccel"
    EndSection

    Section "Screen"
            Identifier "Screen0"
            Device "Videocard0"
            Monitor "Monitor0"
            DefaultDepth 8
            SubSection "Display"
                    Viewport 0 0
                    Depth 16
                    Modes "800x600" "640x480"
            EndSubSection
            SubSection "Display"
                    Viewport 0 0
                    Depth 8
                    Modes "640x480"
            EndSubSection
    EndSection

    Section "DRI"
            Group 0
            Mode 0666
    EndSection

    hopefully, this will help someone else should they get into a similar
    situation...

    -bruce

    -----Original Message-----
    From: Jim Cornette [mailto:fc-cornette@insight.rr.com]
    Sent: Friday, March 18, 2005 1:19 PM
    To: bedouglas@earthlink.net; For users of Fedora Core releases
    Subject: Re: booting an intel 815 fc3 without monitor

    bruce wrote:
    > so....
    >
    > just how do i boot into runlevel 3... is there something i should add to
    the
    > grub.conf file... where can i find exact instructions!!
    >
    > thanks.
    >
    > bruce
    >

    I can give you an example of my grub.conf entries. What you need to add
    is the number 3 into the line that you had the other parameters loaded
    into the kernel stanza.

    This grub.conf file is not from the computer with the 815, but has the
    same entries regarding runlevel 3. (Take out rhgb and quiet, enter the
    number 3 into the line and save the file.

    title Fedora Core (2.6.10-1.770_FC3)
             root (hd0,0)
             kernel /vmlinuz-2.6.10-1.770_FC3 ro root=LABEL=/ acpi=on 3
             initrd /initrd-2.6.10-1.770_FC3.img

    Jim

    >
    >>Jonathan
    >>

    -- 
    fedora-list mailing list
    fedora-list@redhat.com
    To unsubscribe: http://www.redhat.com/mailman/listinfo/fedora-list
    

  • Next message: Richard E Miles: "Re: boot in a floppy!"

    Relevant Pages

    • Re: K7V FreeNAS system wont start without a monitor.
      ... THe external CPU speed setting is set to the default, ... Frequency ratio) but it still refuses to boot without a monitor. ... It does allow it to boot without a mouse and keyboard, however, but not ...
      (alt.comp.periphs.mainboard.asus)
    • Re: Cannot display 1024x768 in Win2003
      ... mouse, use VGA mode, once it boot up, change it back to 1024x768. ... Then unplug the monitor keyboard mouse and plug in the KVM monitor ... repeat the same step in order to get the display out. ...
      (microsoft.public.windows.server.general)
    • Re: ultra 10 serial serial port
      ... about 2 years, no keyboard nor monitor. ... failed to boot up last night, ... If the machine booted without a keyboard, the default is to send the ... It will automatically pop over to ttya. ...
      (comp.unix.solaris)
    • Re: Windows XP wont load
      ... Try disconnecting all peripherals except keyboard, mouse and monitor and ... to boot? ... If it does then you can start to pin down the cause of ...
      (microsoft.public.windowsxp.general)
    • RE: booting an intel 815 fc3 without monitor
      ... just how do i boot into runlevel 3... ... booting an intel 815 fc3 without monitor ... Perhaps upgrading to a newer kernel might help. ... I suspect that booting into runlevel 3 ...
      (Fedora)