#### Preconfiguration File for FREEPTO (xubuntu 12.10) ### Localization # Preseeding only locale sets language, country and locale. d-i debian-installer/locale string it_IT # Keyboard selection # Disable automatic (interactive) keymap detection d-i console-setup/ask_detect boolean false d-i keyboard-configuration/layoutcode string it ### Network configuration # disabilita interamente la configurazione della rete d-i netcfg/enable boolean false # imposta l'hostname d-i netcfg/get_hostname string freepto # non assegna il dominio *d-i netcfg/get_domain string unassigned-domain ### Mirror settings # CC is the ISO-3166-2 code for the selected country d-i mirror/http/mirror select CC.archive.ubuntu.com ### Clock and time zone setup # 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 US/Central # Controls whether to use NTP to set the clock during the install d-i clock-setup/ntp boolean true # NTP server to use. The default is almost always fine here. d-i clock-setup/ntp-server string ntp.example.com ### Account setup # To create a normal user account. d-i passwd/user-fullname string paranoid d-i passwd/username string paranoid # Normal user's password, either in clear text d-i passwd/user-password password paranoid d-i passwd/user-password-again password paranoid # Set to true if you want to encrypt the first user's home directory. d-i user-setup/encrypt-home boolean false ### Partitioning ### SU questa parte non ho capito bene come risolvere: ### non sono sicuro del fatto che se si lascia commentata la stringa seguente ### debian-installer non la rende "automatizzata" e quindi chiede all'utente di scegliere il device dove installare. ### In ongi caso non mi pare sia possibile inserire degli hooks per giocare ad esempio con ### dmesg o simili ed individuare dinamicamente il device usb. #d-i partman-auto/disk string /dev/sdc # seleziono il metodo LVM + LUKS d-i partman-auto/method string crypto 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 # VolumeGroup name d-i partman-auto-lvm/new_vg_name string VolumeGroup1 d-i partman-lvm/vgcreate string VolumeGroup1 # dm-crypt passphrase d-i partman-crypto/passphrase password crittofritto d-i partman-crypto/passphrase-again password crittofritto d-i partman/confirm_write_new_label boolean true d-i partman/choose_partition select finish d-i partman/confirm boolean true ## mettere / a 100% dello spazio rimanente d-i partman-auto/expert_recipe string \ 128 512 1024 ext2 \ $defaultignore{ } \ $primary{ } \ $bootable{ } \ method{ format } \ format{ } \ use_filesystem{ } \ filesystem{ ext3 } \ mountpoint{ /boot } \ . \ 120 800 5000 btrfs \ $lvmok{ } \ method{ format } \ format{ } \ use_filesystem{ } \ filesystem{ ext3 } \ mountpoint{ / } \ . \ ### Package selection tasksel tasksel/first multiselect xubuntu-desktop ##Maybe replace parts of our install.txt # Individual additional packages to install d-i pkgsel/include string # Whether to upgrade packages after debootstrap. # Allowed values: none, safe-upgrade, full-upgrade d-i pkgsel/upgrade select full-upgrade # Policy for applying updates. May be "none" (no automatic updates), # "unattended-upgrades" (install security updates automatically), or # "landscape" (manage system with Landscape). d-i pkgsel/update-policy select unattended-upgrades ### Boot loader installation # Grub is the default boot loader (for x86). d-i grub-installer/only_debian boolean true ### Finishing up the installation # Avoid that last message about the install being complete. d-i finish-install/reboot_in_progress note