Como inicializar a rede PXE no Ubuntu Server 12.04 usando HTTP

2

Eu tenho uma tarefa para instalar PXE servidores Ubuntu por HTTP, então eu encontro o tutor em PXEInstallServer e KickstartCompatibility e definir o meu servidor PXE como foi dito. Então eu abro um cliente de teste e consigo um endereço IP com sucesso e entro na tela de instalação do PXE, mas quando eu seleciono o "pxe-ubuntu" para instalar pelo HTTP, ele vai suavemente no começo mas depois da etapa "Configurando a rede com DHCP ", não mostra nada além de uma tela preta com um branco em branco piscando na parte inferior esquerda.

Aqui estão alguns arquivos de configuração.

$ cat /var/lib/tftpboot/pxelinux.cfg/default 
label pxe-ubuntu
    kernel ubuntu-installer/amd64/linux
    append ks=http://192.168.20.20/ks.cfg vga=normal initrd=ubuntu-installer/amd64/initrd.gz
    ramdisk_size=16432 root=/dev/rd/0 rw  --

root@test1:~# cat /var/www/ks.cfg 
#Generated by Kickstart Configurator
#platform=AMD64 or Intel EM64T

#System language
lang en_US
#Language modules to install
langsupport en_US
#System keyboard
keyboard us
#System mouse
mouse
#System timezone
timezone Asia/Shanghai
#Root password
rootpw --iscrypted $MT0GPRHy$cEcpS63J6JNZ5j.gsp/Yv0
#Initial user
user a --fullname "" --iscrypted --password Ttd.gsK$WMV9UGm/S.sHOruaD4LPf0
#Reboot after installation
reboot
#Use text mode install
text
#Install OS instead of upgrade
install
#Use Web installation
url --url http://10.10.20.20/ubuntu/install/
#System bootloader configuration
bootloader --location=mbr 
#Clear the Master Boot Record
zerombr yes
#Partition clearing information
clearpart --all --initlabel 
#Disk partitioning information
part /boot --fstype ext4 --size 200 
part / --fstype xfs --size 10240 
part swap --size 4096 
#System authorization infomation
auth  --useshadow  --enablemd5 
#Firewall configuration
firewall --disabled 
#X Window System configuration information
xconfig --depth=8 --resolution=1024x768 --defaultdesktop=GNOME
    
por Nidhoggur 09.04.2015 / 08:32

0 respostas