Пытаюсь настроить preseed для установки 9-го дебиана по сети, развернул dhcp, tftp и apache, всё работает, файл пресида со всех устройств виден (во всяком случае, в браузере открывается). Вот конфиг меню инсталлера:
label install
menu label ^Install
kernel debian-installer/i386/linux
append vga=788 initrd=debian-installer/i386/initrd.gz --- quiet
label oem
meni label ^OEM Install
kernel debian-installer/i386/linux
append vga=788 url=http://192.168.100.1/preseed.cfg initrd=debian-installer/i386/initrd.gz --- quiet
### Locale
d-i debian-installer/locale string en_US
d-i debian-installer/language string en_US:en
d-i debian-installer/country string RU
d-i localechooser/supported-locales multiselect en_US.UTF-8, ru_RU.UTF-8
d-i keyboard-configuration/xkb-keymap select us
### Network
d-i netcfg/choose_interface select auto
d-i netcfg/get_hostname string unassigned-hostname
d-i netcfg/get_domain string unassigned-domain
### Mirror
d-i mirror/protocol string http
d-i mirror/country string RU
d-i mirror/http/hostname string mirror.yandex.ru
d-i mirror/http/directory string /debian
d-i mirror/http/proxy string
### Users
d-i passwd/root-password password 12qw!@QW
d-i passwd/root-password-again password 12qw!@QW
d-i passwd/user-fullname string System Administrator
d-i passwd/username string sysadmin
d-i passwd/user-password password 12qw!@QW
d-i passwd/user-password-again 12qw!@QW
### Time
d-i clock-setup/utc boolean true
d-i time/zone string Europe/Moscow
d-i clock-setup/ntp boolean true
### Partitioning
d-i partman-auto/disk string /dev/sda
d-i partman-auto/method string crypto
d-i partman-crypto/passphrase password 12qw!@QW
d-i partman-crypto/passphrase-again password 12qw!@QW
d-i partman-auto/choose_recipe select atomic
d-i partman-lvm/device_remove_lvm boolean true
d-i partman-lvm/device_remove_md boolean true
d-i partman-lvm/confirm boolean true
d-i partman-lvm/confirm_nooverwrite boolean true
d-i partman-auto-crypto/erase_disks boolean false
d-i partman-partitioning/confirm_write_new_label boolean true
d-i partman/confirm boolean true
d-i partman/confirm_nooverwrite boolean true
### Install
d-i hw-detect/load_firmware boolean false
d-i grub-installer/only_debian boolean true
d-i finish-install/reboot_in_progress note
d-i debian-installer/exit/poweroff boolean true