Main

EscolaCosmo

/etc/exports
/opt/ltspnovo           *(ro,no_root_squash,async,no_subtree_check)
/etc/dhcp3/dhcpd.conf
# dhcpd.conf

ddns-update-style             ad-hoc;

option subnet-mask            255.255.255.0;
option broadcast-address      192.168.20.255;
option routers                192.168.20.1;
option domain-name-servers    192.168.20.1;
option domain-name            "ltsp";   # You really should fix this
option option-128 code 128 = string;
option option-129 code 129 = text;
#
#
get-lease-hostnames           true;
#
next-server                   192.168.20.1;
option root-path              "/opt/ltspnovo/i386";

#
#option root-path              "192.168.20.1:/opt/ltspnovo/i386";
#
subnet 192.168.20.0 netmask 255.255.255.0 {
    range 192.168.20.20 192.168.20.150;
    if substring( option vendor-class-identifier, 0, 9 ) = "PXEClient" {
        filename "/ltsp/i386/pxelinux.0";
    } else {
        filename "/ltsp/i386/nbi.img";
    }
}

/etc/ltsp/dhcpd.conf

#
# Default LTSP dhcpd.conf config file.
#

authoritative;

subnet 192.168.20.0 netmask 255.255.255.0 {
    range 192.168.20.20 192.168.20.150;
    option domain-name "ltsp";
    option domain-name-servers 192.168.20.1;
    option broadcast-address 192.168.20.255;
    option routers 192.168.20.1;
    next-server 192.168.20.1;
#    get-lease-hostnames true;
    option subnet-mask 255.255.255.0;
    option root-path "/opt/ltspnovo/i386";
    if substring( option vendor-class-identifier, 0, 9 ) = "PXEClient" {
        filename "/ltspnovo/i386/pxelinux.0";
    } else {
        filename "/ltspnovo/i386/nbi.img";
    }
}

Arquivo .tar.gz do ambiente chroot do LTSP5