I've got a fresh install of Xubuntu 14.04 64bit and I would like to 
configure it to be a LTSP-PNP server, I've following the tutorial from 
https://help.ubuntu.com/community/UbuntuLTSP/ltsp-pnp doing the 
following commands

Ran the following to install LTSP-PNP on Xubuntu 14.04
: sudo -i
: apt-get --yes install dnsmasq ltsp-server-standalone ltsp-client 
ldm-ubuntu-theme
: ltsp-config dnsmasq
: echo 'IPAPPEND=3' >> /etc/ltsp/update-kernels.conf
: /usr/share/ltsp/update-kernels

Build image
: ltsp-update-image --cleanup /

Generate LTS config
: ltsp-config lts.conf

Update kernels
: ltsp-update-kernels

I've got a separate DHCP server and I configured it like so
# Internal subnet
subnet 10.1.1.0 netmask 255.255.255.0 {
     allow booting;
     allow bootp;
     range 10.1.1.100 10.1.1.200;
     option domain-name-servers 10.1.1.1;
     option domain-name "lan";
     option routers 10.1.1.1;
     option broadcast-address 10.1.1.255;
     default-lease-time 72000;
     max-lease-time 72000;
}

ddns-update-style none;

# (PXE Boot lines)
authoritative;
option domain-name-servers 10.1.1.1;
option broadcast-address 10.1.1.255;
option routers 10.1.1.1;
option root-path "/opt/ltsp/amd64";
next-server 10.1.1.150;

if substring( option vendor-class-identifier, 0, 9 ) = "PXEClient" {
     filename "/ltsp/amd64/pxelinux.0";
} else {
     filename "/ltsp/amd64/nbi.img";
}


When I boot up my thin client, it finds the DHCP server which redirects 
successfully to the PXE server then I get the error
Could not find kernel image: vmlinuz

If I look into the var/lib/tftpboot/ltsp/amd64 directory I have the 
following files
gpxelinux.0  lts.conf  pxelinux.0  pxelinux.cfg

So it looks like I'm missing a few files here. I'm used to working with 
LTSP thin clients and have never done a LTSP-PNP install, how do I get 
the vmlinuz file in there?

------------------------------------------------------------------------------
Infragistics Professional
Build stunning WinForms apps today!
Reboot your WinForms applications with our WinForms controls. 
Build a bridge from your legacy apps to the future.
http://pubads.g.doubleclick.net/gampad/clk?id=153845071&iu=/4140/ostg.clktrk
_____________________________________________________________________
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

Reply via email to