I am having issues with booting the linux kernel.
 
installed the necessary RPM's for a RedHat 7.1 server
 
ltsp_core-3.0.7-0
ltsp_kernel-3.0.5-0
ltsp_x_core-3.0.4-0
ltsp_x_fonts-3.0.0-0
 
also installed
dhcp-3.0pl1-9 and
tftp-server-0.29-3
 
 
Made a etherboot disk for PCNet32
 
the system boots off of the floppy
initializes the card
searches for DHCP
receives an address
Me: 192.168.0.17, Server: 192.168.0.10, Gateway: 192.168.0.1
 
Loading 192.168.0.10:/lts/vmlinuz-2.4.19-ltsp-1 ...(NBI)............
....done
 
and nothing more (just hangs)
 
I seems like I might be close but any help is greatly appreciated
 
Bill
 
 
 
configurations below:
 
lts.conf
#
# Config file for the Linux Terminal Server Project (
www.ltsp.org)
#
 
[Default]
        SERVER             = 192.168.0.10
        XSERVER            = auto
        X_MOUSE_PROTOCOL   = "PS/2"
        X_MOUSE_DEVICE     = "/dev/psaux"
        X_MOUSE_RESOLUTION = 400
        X_MOUSE_BUTTONS    = 3
        USE_XFS            = N
        LOCAL_APPS         = N
        RUNLEVEL           = 5
 
#------------------------------------------------------------------------------
#
# Example of specifying X settings for a workstation
#
[ws001]
        XSERVER            = auto
        LOCAL_APPS         = N
        USE_NFS_SWAP       = N
        SWAPFILE_SIZE      = 48m
        RUNLEVEL           = 5
 
------------------------------------------------------------
dhcpd.conf
# Sample configuration file for ISCD dhcpd
#
# Make changes to this file and copy it to /etc/dhcpd.conf
#
 
default-lease-time            21600;
max-lease-time                21600;
 
ddns-update-style interim;
ignore client-updates;
 
not authoritative;
 
option subnet-mask            255.255.255.0;
option broadcast-address      192.168.0.255;
option routers                192.168.0.1;
option domain-name-servers    192.168.0.15;
option domain-name            "domain.com";
option root-path              "192.168.0.10:/opt/ltsp/i386";
 
shared-network WORKSTATIONS {
    subnet 192.168.0.0 netmask 255.255.255.0 {
    }
}
 
group   {
    use-host-decl-names       on;
    #option log-servers        192.168.0.254;
 
    host ws001 {
        hardware ethernet     00:00:A0:0A:02:5E;
        fixed-address         192.168.0.17;
        filename              "/lts/vmlinuz-2.4.19-ltsp-1";
--------------------------------------------------------------------
hosts.allow
 
#
# hosts.allow   This file describes the names of the hosts which are
#               allowed to use the local INET services, as decided
#               by the '/usr/sbin/tcpd' server.
#
 
## LTS-begin ##
 
#
# The lines between the 'LTS-begin' and the 'LTS-end' were added
# on: Wed Jan 22 19:03:04 EST 2003 by the ltsp installation script.
# For more information, visit the ltsp homepage
# at
http://www.ltsp.org
#
 
bootpd:    0.0.0.0
in.tftpd:  192.168.0.
portmap:   192.168.0.
 
## LTS-end ##
 

Reply via email to