Hi Jim,
I had a similar situation so I've installed tftp
server package, changed filename to
/lts/vmlinuz-2.4.9-ltsp-6 in dhcpd.conf, restart
xinetd, then boot up the client.
On the client boot up, I got to:
......
......
..Me: 192.168.1.102, Server: 0.0.0.0, Gateway
192.168.1.1
Loading 0.0.0.0:/tftpboot/kernel ......
I think the server entry should be 192.168.1.100
instead of 0.0.0.0 since that's where my server is.
What am I missing?
Thanks...
P.S. Do I need to install dns, nis?
My environment: rh72, linksys router, dell server,
dell w/s
--- [EMAIL PROTECTED] wrote:
> Norm,
>
> Wait a sec, are you saying you had to create the
> /etc/xinetd.d/tftp
> file ?
>
> That would indicate that you probably don't have the
> tftp server
> package installed.
>
> Try doing this:
>
> rpm -qa | grep tftp
>
> and see if the tftp server is installed. If not,
> then install it.
> but before installing, you should remove that file
> you created.
>
> Then, when that is done, restart xinetd.
>
> And, you should have '/lts/vmlinuz-2.4.9-ltsp-6' for
> the
> filename setting in dhcpd.conf.
>
> Jim.
>
>
> On Thu, 4 Apr 2002, Norman wrote:
>
> > [EMAIL PROTECTED] wrote:
> >
> > > Norm,
> > >
> > > 2 more things I need to know.
> > >
> > > 1) Show me the /etc/xinetd.d/tftp file.
> > > Particularly the server_args line. Is there
> > > a '-s' on that line ? If so, then you DON'T
> > > need the '/tftpboot' in the filename entry
> > > in dhcpd. if there is NOT a '-s', then you
> > > DO need the '/tftpboot'.
> >
> > Hi Jim,
> > I have tried
> > /tftpboot/lts/vmlinuz-2.4.9-ltsp-6
> > tftpboot/lts/vmlinuz-2.4.9-ltsp-6
> > /lts/vmlinuz-2.4.9-ltsp-6
> > lts/vmlinuz-2.4.9-ltsp-6
> > and after each change I have restarted both the
> tftp server and dhcp
> > but none work.
> >
> > This is my tftp file:
> > ( the ltsp_install script did not install this
> file for me
> > I edited the ftp section of the example in the man
> page to create it. )
> >
> > # default: off
> > # description: The tftp server serves files using
> the trivial file transfer \
> > # protocol. The tftp protocol is often used
> to boot diskless \
> > # workstations, download configuration files
> to network-aware printers, \
> > # and to start the installation process for
> some operating systems.
> > service tftp
> > {
> > disable = no
> > socket_type = dgram
> > protocol = udp
> > wait = yes
> > user = root
> > server =
> /usr/sbin/in.tftpd
> > server_args = -s /tftpboot
> > server-path = /usr/sbin
> /tftpboot
> > }
> >
> > >
> > > 2) What is in your /tftpboot/lts directory ?
> > > Is the kernel there ?
> > >
> >
> > In the /tftpboot/lts there are 2 files
> >
> > vmlinuz-2.4.9-ltsp-6 and
> vmlinuz-2.4.9-ltsp-lpp-6
> > and I have tried both.
> >
> >
> > >
> > > Jim McQuillan
> > > [EMAIL PROTECTED]
> > >
> > > On Wed, 3 Apr 2002, root wrote:
> > >
> > > > Hi everyone,
> > > >
> > > > I am trying to get a PC to connect using a
> boot floppy.
> > > > The Server PC is running Linux Mandrake 8
> kernel 2.4.3-20mdk.
> > > >
> > > > I can get a fixed IP address assigned and then
> it tries to load the
> > > > kernel
> > > > but all I get is :
> > > >
> > > > Loading
> 192.168.1.3:/tftpboot/lts/vmlinuz-2.4.9-ltsp-6 . . .
> . . . .
> > > >
> > > > I have checked on the server and I get
> > > >
> > > > [root@norman3 /etc]# netstat -an | grep ":69"
> > > > tcp 0 0 0.0.0.0:69
> 0.0.0.0:*
> > > > LISTEN
> > > >
> > > >
> > > > In dhcp.conf I have tried
> > > > filename
> "/tftpboot/lts/vmlinuz-2.4.9-ltsp-6";
> > > > filename
> "/lts/vmlinuz-2.4.9-ltsp-6";
> > > > filename "lts/vmlinuz-2.4.9-ltsp-6";
> > > >
> > > >
> > > > as various people have suggested but it still
> doesn't work.
> > > >
> > > >
> > > > /etc/dhcpd.conf is :
> > > > subnet 192.168.1.0 netmask 255.255.255.0 {
> > > > # default gateway
> > > > option routers 192.168.1.1;
> > > > option subnet-mask 255.255.255.0;
> > > > option domain-name "home.user";
> > > > option domain-name-servers
> 194.168.4.100;
> > > > option nis-domain "domain.org";
> > > > option root-path
> "192.168.1.3:/opt/ltsp/i386";
> > > > filename
> "/tftpboot/lts/vmlinuz-2.4.9-ltsp-6";
> > > > range dynamic-bootp 192.168.1.4
> 192.168.1.22;
> > > > default-lease-time 21600;
> > > > max-lease-time 43200;
> > > >
> > > > # we want the nameserver to appear at
> a fixed address
> > > >
> > > >
> > > > host ws001 {
> > > > hardware ethernet 00:10:A7:10:D4:79;
> > > > filename
> "/tftpboot/lts/vmlinuz-2.4.9-ltsp-6";
> > > > fixed-address 192.168.1.4;
> > > > option option-128 E4:45:74:68:00:00;
> > > >
> > > > option option-129 "NIC=rtl8139";
> > > > }
> > > > }
> > > >
> > > >
> > > > /etc/hosts is :
> > > >
> > > > 127.0.0.1 localhost.localdomain
> localhost
> > > > 192.168.1.3 norman3.home.user
> norman3
> > > > 192.168.1.2 norman.home.user
> norman
> > > > 192.168.1.1 norman2.home.user
> norman2
> > > > 192.168.1.4 ws001
> > > >
> > > >
> > > > /etc/hosts.allow is :
> > > >
> > > > #
> > > > # 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: Mon Apr 1 21:22:36 EST 2002 by the ltsp
> installation script.
>
=== message truncated ===
__________________________________________________
Do You Yahoo!?
Yahoo! Tax Center - online filing with TurboTax
http://taxes.yahoo.com/
_____________________________________________________________________
Ltsp-discuss mailing list. To un-subscribe, or change prefs, goto:
https://lists.sourceforge.net/lists/listinfo/ltsp-discuss
For additional LTSP help, try #ltsp channel on irc.openprojects.net