method{ format } format { } \
method{ format } format{ } \
Добрый день!Вдохновившись следующим гайдом https://www.hiroom2.com/2016/05/19/ubuntu-16-04- решил сделать подобный установщик для основных систем для домашних виртуалок.debian-8-run-pxe-boot-server- for-automated-install/ Ubuntu 16.04 ставится без проблем. Debian же, что jessie, что stretch, валятся на непонятной мне ошибке.В установщике это выглядит так:"Base system installation errorThe debootstrap exited with an error (return value 1).Check /var/log/syslog or see virtual console 4 for the details."Скриншот для пущей наглядности: https://imgur.com/HX3OVwlВ обоих случаях на что-то жалуется tar.В консоли, stretch: https://imgur.com/Afk1MpO В консоли, jessie: https://imgur.com/AvvM2QC Использую следующую конфигурацию preseed.## locales#d-i debian-installer/locale string en_US.UTF-8d-i debian-installer/language string end-i debian-installer/country string RU## keyboard#d-i console-setup/ask_detect boolean falsed-i keyboard-configuration/xkb-keymap select us d-i keyboard-configuration/toggle select No togglingd-i debian-installer/keymap select usd-i keymap select us## network#d-i netcfg/choose_interface select autod-i netcfg/get_hostname string unassigned-hostnamed-i netcfg/get_domain string unassigned-domain## users#d-i passwd/user-fullname stringd-i passwd/username string bydunaid-i passwd/root-password password debiand-i passwd/root-password-again password debiand-i passwd/user-password password debiand-i passwd/user-password-again password debiand-i user-setup/allow-password-weak boolean true## repos#d-i mirror/country string manuald-i mirror/http/hostname string http://mirror.yandex.rud-i mirror/http/directory string /debiand-i mirror/http/proxy string## time#d-i clock-setup/utc boolean trued-i clock-setup/ntp boolean trued-i time/zone string Europe/Moscow## partitioning## use disk /dev/sda or /dev/vdad-i partman-auto/disk string /dev/[sv]da# use regular install, not lvm or encryptedd-i partman-auto/method string regular# remove any lvmd-i partman-lvm/device_remove_lvm boolean true# remove any raidd-i partman-md/device_remove_md boolean true# confirmationd-i partman-lvm/confirm boolean trued-i partman-lvm/confirm_nooverwrite boolean true # gptd-i partman-basicfilesystems/choose_label string gpt d-i partman-basicfilesystems/default_label string gpt d-i partman-partitioning/choose_label string gpt d-i partman-partitioning/default_label string gpt d-i partman/choose_label string gptd-i partman/default_label string gptpartman-partitioning partman-partitioning/choose_label select gpt # partitioningd-i partman-auto/alignment string optimalpartman-auto/choose_recipe select custom_reciped-i partman-auto/expert_recipe string \custom_recipe :: \1 1 1 free \$gptonly{ } \$primary{ } \$bios_boot{ } \method{ biosgrub } \. \16384 16484 -1 ext4 \$gptonly{ } \$primary{ } \$bootable{ } \method{ format } format { } \use_filesystem{ } filesystem{ ext4 } \mountpoint{ / }\. \4096 4096 4096 linux-swap \$gptonly{ } \$primary{ } \method{ swap } format { }\.# confirmation#d-i partman-md/confirm boolean true#d-i partman-lvm/confirm boolean true# allow to write new labelsd-i partman-partitioning/confirm_write_new_label boolean true # finishingd-i partman/choose_partition select finish# confirmationd-i partman/confirm boolean trued-i partman/confirm_nooverwrite boolean true# kerneld-i base-installer/kernel/image string linux-image-amd64# grubd-i grub-installer/grub2_instead_of_grub_legacy boolean true d-i grub-installer/only_debian boolean trued-i grub-installer/bootdev string /dev/[sv]da# packagesd-i pkgsel/update-policy select noned-i pkgsel/include string sudo openssh-server vim tcpdump tmux nload htopd-i finish-install/reboot_in_progress note С таким конфигом Ubuntu устанавливается, а Debian - ни в какую.В чем может быть проблема?--Regards,Evgeny Dunaev