Configurei o ltsp, os terminais reconhecem o server dhcp, recebe o ip atribuido no dhcpd.conf, mas ao carregar o sistema ele trava na mensagem abaixo:
Error:
could not automatically detect the network card.
PCI cards should be detected automatically.
ISA cards cannot be detected, so they require the nic drive to be specified in a 'Nic=' parameter to be passed on the kernel command line, usually specefied in option-129, in the /etc/dhcpd.con file. See the LTSP docs for more ino.
Kernel panic - not syncing: Attempted to kill init!

Alguem sabe dizer o que pode ser feito?
E quando eu insiro as linhas abaixo eu não consigo reiniciar o serviço dhcp:
option option-128 code 128 = string;
option option-129 code 129 = text;
host ws001 {
hardware ethernet 00:E0:06:E8:00:84;
fixed-address 192.168.0.11;
option option-128 e4:45:74:68:00:00;
option option-129 "NIC=XXX";

Segue os arquivos da configuração do ltsp.
dhcpd.conf
Código :
shared-network WORKSTATIONS {
    subnet 192.168.0.0 netmask 255.255.255.0 {
    default-lease-time            21600;
    max-lease-time                21600;
    option subnet-mask            255.255.255.0;
    option broadcast-address      192.168.0.255;
    option routers                192.168.0.1;
    option domain-name-servers    192.168.0.1;
    deny unknown-clients;
 
    # range 192.168.0.100 192.168.0.201;
    option root-path    "192.168.0.1:/opt/ltsp/i386";
    next-server             192.168.0.1;
    }
 
}
 
group   {
 
    use-host-decl-names       on;
 
    # Adicione mais terminais caso necessário copiando e colando as linhas:
 
 
    # terminal 1:
    host ws001 {
    hardware ethernet     00:23:7D:43:63:60;    
    fixed-address         192.168.0.11;
    filename "lts/2.6.17.3-ltsp-1/pxelinux.0";
 
    }
 
    # terminal 2:
    host ws002 {
        hardware ethernet     00:18:71:8C:EC:D8;
        fixed-address         192.168.0.12;
    filename "lts/2.6.17.3-ltsp-1/pxelinux.0"; 
    }
 
    # terminal 3:
    host ws003 {
        hardware ethernet     00:E0:7D:AB:E3:11;
        fixed-address         192.168.0.13;
    filename "lts/2.6.17.3-ltsp-1/pxelinux.0"; 
    }
 
    # terminal 4:
    host ws004 {
        hardware ethernet     00:C0:DF:09:05:55;
        fixed-address         192.168.0.14;
    filename "lts/2.6.17.3-ltsp-1/pxelinux.0"; 
    }
 
    # terminal 5:
    host ws005 {
        hardware ethernet     00:60:08:37:4F:15;
        fixed-address         192.168.0.15;
    filename "lts/2.6.17.3-ltsp-1/pxelinux.0"; 
    }
 
    # terminal 6:
    host ws006 {
    hardware ethernet 00:0C:29:6F:F4:AB;
    fixed-address 192.168.0.16; 
    filename "lts/2.6.17.3-ltsp-1/pxelinux.0"; 
    }
 
    # terminal 7:
    host ws007 {
        hardware ethernet 00:08:0D:7B:E9:C8;
        fixed-address 192.168.0.17; 
    filename "lts/2.6.17.3-ltsp-1/pxelinux.0"; 
    }
 
    # terminal 8:
    host ws008 {
    hardware ethernet 00:0c:29:f4:34:19;
    fixed-address 192.168.0.18; 
    filename "lts/2.6.17.3-ltsp-1/pxelinux.0"; 
    }
 
}
arquivo exports
Código :
# /etc/exports, para o LTSP 4.2 
/opt/ltsp/i386/        192.168.0.0/255.255.255.0(ro,sync,subtree_check,no_root_squash)
[/code]arquivo hosts.allow
Código :
ALL : 127.0.0.1 192.168.0.0/24
arquivo lts.conf

Código :
[Default]
        SERVER             = 192.168.0.1
 
# Esta opção faz com que o LTSP detecte automaticamente a placa de vídeo 
# dos terminais, utilizando os drivers do X.org
 
        XSERVER            = auto
 
# Configure aqui o tipo de mouse que será usado nos terminais por default.
# Você pode especificar tipos de mouse diferentes na configuração de cada
# terminal.
 
        X_MOUSE_PROTOCOL   = "PS/2"
        X_MOUSE_DEVICE     = "/dev/psaux"
        X_MOUSE_RESOLUTION = 400
        X_MOUSE_BUTTONS    = 3
 
# Configuração default do teclado, ABNT2:
 
    XkbModel    = ABNT2 
    XkbLayout    = br 
 
# Faz com que as estações carreguem o ambiente gráfico por default:
 
        SCREEN_01         = startx 
        RUNLEVEL           = 5
 
 
# ------------ Configuração específica de cada estação: -------------
 
 
# Esta é a configuração individual dos terminais, que bipassam os valores 
# default determinados acima. Você pode adicionar mais estações conforme 
# necessário. Descomente a linha do swap via rede em todas as estações 
# com 32 MB de RAM ou menos. 
 
# Veja exemplos de configuração para diferentes situações logo a seguir.
 
 
[ws001]
        XSERVER        = auto
    # suporte a CD, disquete e pendrive
    LOCAL_STORAGE    = Y
    MODULE_01    = ohci-hcd
    # swap via rede:
    # USE_NBD_SWAP    = Y
 
[ws002]
        XSERVER        = auto
    # suporte a CD, disquete e pendrive
    LOCAL_STORAGE    = Y
    MODULE_01    = ohci-hcd
    # swap via rede:
    # USE_NBD_SWAP    = Y
 
[ws003]
        XSERVER        = auto
    # suporte a CD, disquete e pendrive
    LOCAL_STORAGE    = Y
    MODULE_01    = ohci-hcd
    # swap via rede:
    # USE_NBD_SWAP    = Y
 
[ws004]
        XSERVER        = auto
    # suporte a CD, disquete e pendrive
    LOCAL_STORAGE    = Y
    MODULE_01    = ohci-hcd
    # swap via rede:
    # USE_NBD_SWAP    = Y
 
[ws005]
        XSERVER        = auto
    # suporte a CD, disquete e pendrive
    LOCAL_STORAGE    = Y
    MODULE_01    = ohci-hcd
    # swap via rede:
    # USE_NBD_SWAP    = Y
 
[ws006]
        XSERVER        = auto
    # suporte a CD, disquete e pendrive
    LOCAL_STORAGE    = Y
    MODULE_01    = ohci-hcd
    # swap via rede:
    # USE_NBD_SWAP    = Y
 
[ws007]
        XSERVER        = auto
    # suporte a CD, disquete e pendrive
    LOCAL_STORAGE    = Y
    MODULE_01    = ohci-hcd
    # swap via rede:
    # USE_NBD_SWAP    = Y
 
[ws008]
        XSERVER        = auto
    # suporte a CD, disquete e pendrive
    LOCAL_STORAGE    = Y
    MODULE_01    = ohci-hcd
    # swap via rede:
    # USE_NBD_SWAP    = Y
arquivo hosts.conf

Código :
127.0.0.1 ltsp localhost
 
# The following lines are desirable for IPv6 capable hosts
# (added automatically by netbase upgrade)
 
::1     ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
ff02::3 ip6-allhosts
 
 
192.168.0.1 ltsp
192.168.0.11 ws001
192.168.0.12 ws002
192.168.0.13 ws003
192.168.0.14 ws004
192.168.0.15 ws005
192.168.0.16 ws006
192.168.0.17 ws007
192.168.0.18 ws008
Quem puder me ajudar agradeço muito.
As placas de rede dos clientes são placas onboard e funcionam pxe, não entendo porque não entram no sistema.

obrigado.