############# # Language pack selection ############# d-i pkgsel/language-packs multiselect es, en #################################################################### # Localizations / Timezone #################################################################### ### Keyboard selection ### # Seleccionar el mapa del teclado: español d-i console-setup/modelcode string skip-config d-i console-keymaps-at/keymap select es d-i keyboard-configuration/xkb-keymap select es d-i console-setup/layoutcode string es d-i keyboard-configuration/layoutcode string es # Configuración de localización para el idioma y país. debconf debconf/language string es d-i debian-installer/locale string es_ES.UTF-8 d-i debian-installer/language string es d-i debian-installer/country string ES d-i localechooser/supported-locales en_GB.UTF-8 ### Timezone ### d-i clock-setup/utc boolean true d-i time/zone string Europe/Madrid ##################### # Updates y Software de terceros: ##################### ubiquity ubiquity/download_updates boolean false ubiquity ubiquity/use_nonfree boolean true ##################### # Network Configuration & sources.list ##################### d-i netcfg/enable boolean false d-i netcfg/get_hostname string vitalinux d-i netcfg/get_domain string aragon.es d-i mirror/country string manual d-i mirror/http/hostname string mirror.vitalinux.educa.aragon.es d-i mirror/http/directory string /ubuntu/ d-i apt-setup/use_mirror boolean true ##d-i apt-setup/mirror/error select Change mirror d-i apt-setup/multiverse boolean true d-i apt-setup/restricted boolean true d-i apt-setup/universe boolean true ##d-i apt-setup/partner boolean true ### Extras ##d-i apt-setup/extras boolean true #################################################################### # User Creation # Usuarios y contraseñas #################################################################### d-i passwd/root-login boolean false d-i passwd/make-user boolean true d-i passwd/user-fullname string DGA Vitalinux d-i passwd/username string dga d-i passwd/user-password-crypted password $1$DuO5jFOl$RgFC.CHPpijdzz/I43e2g0 d-i user-setup/allow-password-weak boolean true d-i passwd/user-default-groups string audio cdrom video d-i user-setup/encrypt-home boolean false ################### # Omitir el mensaje final sobre la finalización de la instalación ################### d-i finish-install/reboot_in_progress note # Para apagar la máquina al terminar d-i debian-installer/exit/poweroff boolean true ### Creación del sources.list durante la instalación de la ISO vía preseed: d-i preseed/late_command string \ cp -f /target/usr/share/vitalinux/apt/sources.list /target/etc/apt/sources.list; \ in-target apt update; #################################################################### # Disk Partitioning / Boot loader #################################################################### # - regular: use the usual partition types for your architecture # - lvm: use LVM to partition the disk # - crypto: use LVM within an encrypted partition d-i partman-auto/method string regular # If one of the disks that are going to be automatically partitioned # contains an old LVM configuration, the user will normally receive a # warning. This can be preseeded away... d-i partman-lvm/device_remove_lvm boolean true # The same applies to pre-existing software RAID array: d-i partman-md/device_remove_md boolean true # And the same goes for the confirmation to write the lvm partitions. #d-i partman-lvm/confirm boolean true #d-i partman-lvm/confirm_nooverwrite boolean true # You can choose one of the three predefined partitioning recipes: # - atomic: all files in one partition # - home: separate /home partition # - multi: separate /home, /usr, /var, and /tmp partitions d-i partman-lvm/device_remove_lvm boolean true d-i partman-lvm/device_remove_lvm_span boolean true d-i partman-auto/purge_lvm_from_device boolean true #d-i partman-auto-lvm/new_vg_name string sistema #d-i partman-auto/init_automatically_partition \ # select Guided - use entire disk and set up LVM # En la receta partman: ## 1er número) Tamaño mínio para esa partición/Volumen ## 2o número) Es la prioridad ## 3o número) Es el tamaño máximo (-1 indica sin máximo) d-i partman-auto/choose_recipe select atomic # This makes partman automatically partition without confirmation. ###d-i partman-md/confirm boolean true 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 ## Controlling how partitions are mounted # The default is to mount by UUID, but you can also choose "traditional" to # use traditional device names, or "label" to try filesystem labels before # falling back to UUIDs. d-i partman/mount_style select uuid d-i partman/confirm_write_new_label boolean true d-i partman/choose_partition select Finish partitioning and write changes to disk ubiquity partman/choose_partition select Finish partitioning and write changes to disk ubiquity partman/confirm boolean true #################################################################### # Boot Loader - Grub #################################################################### #d-i partman/early_command string \ #USBDEV=$(list-devices usb-partition | sed "s/\(.*\)./\1/");\ #BOOTDEV=$(list-devices disk | grep -v "$USBDEV" | head -1);\ #echo "grub-pc grub-pc/install_devices string $BOOTDEV" | debconf-set-selections;\ #debconf-set partman-auto/disk $BOOTDEV;\ #debconf-set grub-installer/bootdev $BOOTDEV; \ #umount /media; #d-i grub-installer/only_debian boolean true #d-i grub-installer/with_other_os boolean true #d-i grub-installer/bootdev string /dev/sda