Created
October 20, 2011 16:56
-
-
Save adamgibbins/1301649 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
d-i preseed/include string common.cfg | |
### Partitioning | |
# The presently available methods are: "regular", "lvm" and "crypto" | |
d-i partman-auto/method string lvm | |
# 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 | |
d-i partman-auto/purge_lvm_from_device 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 | |
# For LVM partitioning, you can select how much of the volume group to use | |
# for logical volumes. | |
d-i partman-auto-lvm/guided_size string max | |
#d-i partman-auto-lvm/guided_size string 10GB | |
#d-i partman-auto-lvm/guided_size string 50% | |
# 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 | |
# Or provide a recipe of your own... | |
# The recipe format is documented in the file devel/partman-auto-recipe.txt. | |
# If you have a way to get a recipe file into the d-i environment, you can | |
# just point at it. | |
#d-i partman-auto/expert_recipe_file string /hd-media/recipe | |
# If not, you can put an entire recipe into the preconfiguration file in one | |
# (logical) line. This example creates a small /boot partition, suitable | |
# swap, and uses the rest of the space for the root partition: | |
#d-i partman-auto/expert_recipe string \ | |
# boot-root :: \ | |
# 40 50 100 ext3 \ | |
# $primary{ } $bootable{ } \ | |
# method{ format } format{ } \ | |
# use_filesystem{ } filesystem{ ext3 } \ | |
# mountpoint{ /boot } \ | |
# . \ | |
# 500 10000 1000000000 ext3 \ | |
# method{ format } format{ } \ | |
# use_filesystem{ } filesystem{ ext3 } \ | |
# mountpoint{ / } \ | |
# . \ | |
# 64 512 300% linux-swap \ | |
# method{ swap } format{ } \ | |
# . | |
# If you just want to change the default filesystem from ext3 to something | |
# else, you can do that without providing a full recipe. | |
d-i partman/default_filesystem string ext3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment