LTSP install - File not found error.

Post Reply
desertranger
Member
Member
Posts: 17
Joined: January 17th, 2012, 5:46 pm

LTSP install - File not found error.

Post by desertranger »

This is a cool build but the way it has to be setup for myself is a bit different.

Hardware:
1 i386 desktop core duo 3 ghz CPU, 2gb ram, ethernet card, ATI Radeon 9600 video, SB Live and lots of drives of different sizes some set to LVM.
Runs Ubuntu 12.04 LTS with a Gnome desktop as default. PuTTY, VNC and Webmin installed and working fine.
1 Win 8 Laptop
1 Win XP Netbook
1 Wifi Ranger Mobile extreme range access point and router. Also called the WFR :mrgreen:
1 Netgear Gigabyte switch. Hardwires the server, an RPi and the WFR together.


Set server static IP wrote:
# WiFi Ranger Mobile interface
# Used through gigabyte switch.
# For more inf see Man interfaces(5).

# Set loopback network interface
auto lo
iface lo inet loopback

# Disable DHCP
#auto eth0
#iface eth0 inet dhcp

# Assign static IP to server for WFR
auto eth0
iface eth0 inet static
address 10.134.61.250
netmask 255.255.255.0
network 10.134.61.1
broadcast 10.134.61.255
# gateway 10.134.61.254
gateway 10.134.61.1
# Lookup Google? name servers
dns-nameservers 8.8.8.8
dns-search home

Works fine, will last a long time. Paint it green and it won't rust.




Set DHCPD to environment.
dhcpd.conf wrote: #
# For use with WiFi Ranger
# LTSP dhcpd.conf config file.
#

authoritative;

subnet 10.134.61.0 netmask 255.255.255.0 {
# Assign addr outside WFR DHCP range.
range 10.134.61.30 10.134.61.200;
option domain-name "example.com";
option domain-name-servers 10.134.61.1;
option broadcast-address 10.134.61.255;
option routers 10.134.61.1;
# next-server 192.168.0.1;
# get-lease-hostnames true;
option subnet-mask 255.255.255.0;
option root-path "/opt/ltsp/i386";
if substring( option vendor-class-identifier, 0, 9 ) = "PXEClient" {
filename "/ltsp/i386/pxelinux.0";
} else {
filename "/ltsp/i386/nbi.img";
}
}
Now with all that set refart the dhcpd server:
fuzzer@zeferis:/$ sudo /etc/init.d/dhcp3-server restart
[sudo] password for fuzzer:
sudo: /etc/init.d/dhcp3-server: command not found :wtf:
fuzzer@zeferis:/$
I looked in init.d and there was no file dhcp3-server. I did find:
isc-dhcp-server
isc-dhcp-server6

Now what? :mrgreen:
Post Reply