Ubuntu 16.04 Server preseed - Particionando: Use o disco inteiro

1

Estou tentando gerar uma instalação do Ubuntu semi-automatizada. No entanto estou executando em alguns problemas com o arquivo preseed no que diz respeito ao particionamento.

O que eu gostaria de acontecer é:

  • pule o menu onde o usuário normalmente especificaria Guiado (com todas as variantes diferentes) ou particionamento manual
  • Pergunte ao usuário qual disco será usado (caso tenhamos mais de um disco)
  • Use uma receita de partição especificada na pré-configuração

Atualmente, o que tenho é:

    ### Partitioning


# In addition, you'll need to specify the method to use.
# The presently available methods are:
# - 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

d-i partman-auto/init_automatically_partition select Guided - use entire disk

# 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

# 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-auto/choose_recipe select atomic

d-i partman-auto/expert_recipe string             \
        1 1 1 free                                \
            $bios_boot{ }                         \
            method{ biosgrub }                    \
        .                                         \
        256 40 256 fat32                          \
            $primary{ }                           \
            $lvmignore{ }                         \
            method{ efi }                         \
            format{ }                             \
        .                                         \
        4096 4096 4096 linux-swap                 \
            method{ swap } format{ }              \
        .                                         \
        100 10000 100000000 ext4                  \
            $primary{ }                           \
            method{ format } format{ }            \
            use_filesystem{ } filesystem{ ext4 }  \
            mountpoint{ / }                       \
        .
# This makes partman automatically partition without confirmation.
d-i partman-partitioning/confirm_write_new_label boolean true
d-i partman/choose_partition select finish

# Ask user if existing partitions need to be removed!
d-i partman/confirm boolean false
d-i partman-md/confirm boolean false
d-i partman-lvm/device_remove_lvm boolean false
d-i partman/confirm_nooverwrite boolean false
d-i partman-md/confirm_nooverwrite boolean false
d-i partman-lvm/confirm_nooverwrite boolean false

O problema com este preseed é que, apesar de ter especificado "select Guided - use whole disk", ele ainda usa o primeiro disco e apenas o espaço livre restante disponível naquele disco, em vez de usar o disco inteiro. / p>

Alguém tem alguma idéia de como posso resolver o problema?

Obrigado.

    
por Konstantin Hadzhiev 31.08.2017 / 13:14

0 respostas