Eu construí uma ISO de configuração autônoma para o Ubuntu 12.04.4 usando as instruções fornecidas no wiki da comunidade, no entanto, estou tendo dificuldades com duas partes específicas da instalação:
Olhando para o arquivo sources.list
criado após a instalação, vejo que os repositórios de segurança voltados para a Internet foram ativados ( link ) . Esta é a única coisa que posso ver que deve levar a esse tempo limite durante a instalação.
Abaixo está uma versão do meu arquivo de kickstart. Isso é carregado no ISO padrão do servidor 12.04.4.
Obrigado antecipadamente!
#System language
lang en_US
#langsupport en_US
keyboard us
timezone --utc America/Denver
#Root password (standard)
rootpw --iscrypted password-goes-here
#Skip initial user, root only.
user --disabled
#Reboot after installation
reboot
#Use text mode install
text
#Install OS instead of upgrade
install
#Install from update server (replace with 'cdrom' to use local)
url --url http://internal-server/archive-ubuntu/ubuntu/
#Setup NTP
preseed clock-setup/ntp boolean true
preseed clock-setup/ntp-server string internal-ntp-server
#Use our local repo instead of going out to the internet
preseed mirror/country string manual
preseed mirror/http/hostname string internal-server
preseed mirror/http/directory string /archive-ubuntu
preseed mirror/http/proxy string
preseed mirror/http/mirror internal-server
#Ensure a minimal install
#Options taken from ISO/preseed/ubuntu-server-minimalvm.seed
preseed base-installer/kernel/headers boolean false
preseed tasksel/skip-tasks string standard
preseed pkgsel/language-pack-patterns string
preseed pkgsel/install-language-support boolean false
preseed base-installer/kernel/altmeta string lts-saucy
#System bootloader configuration
bootloader --location=mbr
#For safety, initialize everything
#Clear the Master Boot Record
zerombr yes
#Partition clearing information
clearpart --all --initlabel
#Partition Setup
#Redacted
#System authorization information
auth --useshadow --enablemd5
#Network information
#Redacted
#Firewall configuration
firewall --disabled
#Do not configure the X Window System
skipx