I am new to Linux and LTSP.
Our school has 50 thin clients waiting to boot from a LTSP server. After a
week of configuring the server, we have come up against a wall. The client
begins to boot from the server at first but then stops. I've included a copy
of the boot log below.
We have a Pentium 4 2.6 GHz Processor on an Intel board with 1GB of DDR RAM.
We are attempting to use a WAN DHCP server for all other computers at our
school and utilize the LTSP server for thin client IP addresses.
Thanks in advance for any help.
Running dhclient
eth0: Media Link On 100mbps full-duplex
Mounting root filesystem: /opt/ltsp/i386 from: 10:21.121.1
Doing th pivot_root
Mounting the devfs filesystem
Running /sbin/init
Started device management daemon for /dev
Mounting /proc filesystem
Creating ramdisk on /tmp
mke2fs 1.18, 11-Nov-999 for EXT2 FS 0.5b, 95/08/09
Current hostname: nic.7643
<<Pauses (??) here for 3 or 4 minutes before next lines >>
mount: RPC: Timed out
mount: nfssmount failed: Bad file descriptor
NFS: mount program didn't pass remote address!
mount: Mounting 192.168.0.254:/usr/X11R6/lib/X11/fonts on
/usr/X11R6/lib/X11fonts
failed: Invalid argument
mount RPC: Timed out
mount: nfsmount failed: Bad file descriptor
NFS: mount program didn't pass remote address!
mount Mounting 192.168.0.254:/usr/share/AbiSuite/fonts on
/usr/share/AbiSuite/fonts
failed: Invalid argument
Our config files:
eth0 Link encap:Ethernet HWaddr 00:20:18:89:51:7F
inet addr:10.21.121.1 Bcast:10.21.255.255 Mask:255.255.0.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:16007 errors:74 dropped:0 overruns:0 frame:0
TX packets:16305 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:100
RX bytes:2323016 (2.2 Mb) TX bytes:9034257 (8.6 Mb)
Interrupt:21 Base address:0x7c00
eth1 Link encap:Ethernet HWaddr 00:0C:F1:80:55:8B
inet addr:10.5.200.200 Bcast:10.5.255.255 Mask:255.255.0.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:8617 errors:0 dropped:0 overruns:0 frame:0
TX packets:31 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:100
RX bytes:1242672 (1.1 Mb) TX bytes:2027 (1.9 Kb)
Interrupt:20 Base address:0xbc00 Memory:ff8fe000-ff8fe038
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:69 errors:0 dropped:0 overruns:0 frame:0
TX packets:69 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:5292 (5.1 Kb) TX bytes:5292 (5.1 Kb)
The kernal routing table:
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
10.5.0.0 * 255.255.0.0 U 0 0 0 eth1
10.21.0.0 * 255.255.0.0 U 0 0 0 eth0
169.254.0.0 * 255.255.0.0 U 0 0 0 eth1
127.0.0.0 * 255.0.0.0 U 0 0 0 lo
default 10.5.1.1 0.0.0.0 UG 0 0 0 eth1
DHCP config is:
# Sample configuration file for ISCD dhcpd
#
# Don't forget to set run_dhcpd=1 in /etc/init.d/dhcpd
# once you adjusted this file and copied it to /etc/dhcpd.conf.
#
lease-file-name "/var/state/dhcp/dhcpd.leases" ;
pid-file-name "/var/run/dhcpd.pid" ;
default-lease-time 21600;
max-lease-time 21600;
ddns-update-style none;
allow booting;
allow bootp;
option subnet-mask 255.255.0.0;
option broadcast-address 10.21.255.255;
option routers 10.21.1.1;
# option domain-name-servers 68.6.16.245, 12.127.17.72, 4.2.2.1;
option domain-name-servers 68.6.16.245 ;
option domain-name "ltsp";
option root-path "10.21.121.1:/opt/ltsp/i386";
option option-128 code 128 = string;
option option-129 code 129 = text;
next-server 10.21.121.1 ;
# Next section needed
subnet 10.21.0.0 netmask 255.255.0.0 {
# allow bootp ;
range 10.21.121.50 10.21.121.100 ;
deny unknown-clients ;
}
# Next line uses the "host" name used below as the
# "Current Hostname" on the NIC.
use-host-decl-names on;
group {
# Mark's NIC computers
host nic.7643 {
hardware ethernet 00:E0:06:F5:B1:23 ;
fixed-address 10.21.121.2 ;
filename "/lts/pxe/pxelinux.bin";
}
host nic.7663 {
hardware ethernet 00:E0:06:F4:1F:F0 ;
fixed-address 10.21.121.3 ;
filename "/lts/pxe/pxelinux.bin";
#option option-128 e4:45:74:68:00:00;
#option option-129 "NIC=3c509";
}
# not authoritative ;
}
# Next section needed because eth1 (at SBJH at least) has no declatations
subnet 10.5.0.0 netmask 255.255.0.0 {
not authoritative ;
}
#shared-network WORKSTATIONS {
# subnet 10.21.18.0 netmask 255.255.255.0 {
# range dynamic-bootp 10.21.18.100 10.21.18.253;
# use-host-decl-names on;
# option log-servers 10.21.18.254;
#
# # trick from Peter Rundle <[EMAIL PROTECTED]>
# if substring (option vendor-class-identifier, 0, 9) = "PXEClient"
# {
# filename "/lts/pxe/pxelinux.bin";
# # NOTE: kernels are specified in /tftpboot/lts/pxe/pxelinux.cfg/
# }
# else
# {
# filename "/lts/vmlinuz.ltsp";
# }
# }
#}
# example configurations for specifying specific kernels to specific clients
#group {
# use-host-decl-names on;
# option log-servers 10.21.18.254;
#
# host ws001 {
# hardware ethernet 00:E0:06:E8:00:84;
# fixed-address 10.21.18.1;
# filename "/lts/vmlinuz.ltsp";
# option option-128 e4:45:74:68:00:00;
# option option-129 "NIC=3c509";
# }
# host ws002 {
# hardware ethernet 00:D0:09:30:6A:1C;
# fixed-address 10.21.18.2;
# filename "/lts/vmlinuz.ltsp";
# option option-128 e4:45:74:68:00:00;
# option option-129 "NIC=ne";
# }
# host ws003 {
# hardware ethernet 00:D0:09:30:28:B2;
# fixed-address 10.21.18.3;
# # kernels are specified in /tftpboot/lts/boot/pxe/pxelinux.cfg/
# filename "/lts/boot/pxe/pxelinux.bin";
# }
#}
Thanks for your help!
Mark Stucky, Cleveland School
-------------------------------------------------------
This SF.net email is sponsored by OSDN's Audience Survey.
Help shape OSDN's sites and tell us what you think. Take this
five minute survey and you could win a $250 Gift Certificate.
http://www.wrgsurveys.com/2003/osdntech03.php?site=8
_____________________________________________________________________
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.freenode.net