OP resolveu o problema em si
% bl0ck_qu0te%Eu tenho uma configuração de servidor de orquestra Ubuntu e estou tentando instalar alguns ubuntus de desktop em toda a rede. A versão que estou tentando instalar é 11.10. Meu arquivo preseed é assim:
# Preseeding only locale sets language, country and locale.
d-i debian-installer/locale string en_US
# Enable extras.ubuntu.com.
d-i apt-setup/extras boolean true
# Install the Ubuntu desktop.
tasksel tasksel/first multiselect none
# Keyboard selection.
# Disable automatic (interactive) keymap detection.
d-i console-setup/ask_detect boolean false
d-i keyboard-configuration/layoutcode string br
# Controls whether or not the hardware clock is set to UTC.
d-i clock-setup/utc boolean true
# You may set this to any valid setting for $TZ; see the contents of
# /usr/share/zoneinfo/ for valid values.
d-i time/zone string America/Sao_Paulo
### Account setup
d-i passwd/root-login boolean false
d-i passwd/make-user boolean true
d-i passwd/user-fullname string Ubuntu User
d-i passwd/username string ubuntu
# Normal user's password, either in clear text
d-i passwd/user-password-crypted password $1$ZgNbzcXq$hUR0CnHVtYAvNNNnA2.br1
### Partitioning
d-i partman-auto/disk string /dev/sda
d-i partman-auto/method string regular
d-i partman-auto/purge_lvm_from_device boolean true
d-i partman-lvm/device_remove_lvm boolean true
d-i partman-md/device_remove_md boolean true
d-i partman-lvm/confirm boolean true
d-i partman-auto/choose_recipe select atomic
d-i partman-auto/expert_recipe string \
boot-root :: \
40 50 100 ext4 \
$primary{ } $bootable{ } \
method{ format } format{ } \
use_filesystem{ } filesystem{ ext4 } \
mountpoint{ /boot } \
. \
1000 1500 2000 ext4 \
method{ format } format{ } \
use_filesystem{ } filesystem{ ext4 } \
mountpoint{ / } \
. \
1000 1500 100000000 ext4 \
method{ format } format{ } \
use_filesystem{ } filesystem{ ext4 } \
mountpoint{ /home } \
. \
64 512 300% linux-swap \
method{ swap } format{ } \
.
d-i partman-partitioning/confirm_write_new_label boolean true
d-i partman/choose_partition select finish
d-i partman/confirm boolean true
d-i partman/confirm_nooverwrite boolean true
### Apt setup
# You can choose to install non-free and contrib software.
d-i apt-setup/non-free boolean true
d-i apt-setup/contrib boolean true
d-i apt-setup/services-select multiselect security
d-i apt-setup/security_host string security.ubuntu.com
d-i apt-setup/security_path string /ubuntu
### Mirror settings
d-i mirror/country string manual
d-i mirror/http/hostname string ubuntu.mirror.pop-sc.rnp.br
d-i mirror/http/directory string /ubuntu
d-i mirror/http/proxy string
### Package selection
#tasksel tasksel/first multiselect ubuntu-desktop
# Individual additional packages to install
#d-i pkgsel/include string openssh-server
popularity-contest popularity-contest/participate boolean false
d-i grub-installer/only_debian boolean true
### Finishing up the installation
d-i finish-install/reboot_in_progress note
E recebo um erro na fase de pacotes de instalação. Um menu mostra onde eu tenho a opção de selecionar pacotes de instalação novamente, mas mesmo se eu obtiver o mesmo erro. O que há de errado neste arquivo de configuração? Na parte do tasksel, além de nenhum, eu também tentei o ubuntu-desktop, mas recebo o mesmo erro.
Aprecie qualquer ajuda
Kelly
[Editar]
Eu fiz uma alteração comentando a seção de partioning e funcionou! Mas eu realmente preciso especificar o esquema de particionamento ...: (