Advertisement
Guest User

steamos preesed

a guest
Dec 13th, 2013
1,144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.50 KB | None | 0 0
  1. ### Partitioning
  2. # This makes partman automatically partition without confirmation, provided
  3. # that you told it what to do using one of the methods above.
  4. #d-i partman-md/confirm boolean true
  5. #d-i partman-auto/disk string /dev/sda
  6. #d-i partman/default_filesystem string ext4
  7. #d-i partman-partitioning/confirm_write_new_label boolean true
  8. #d-i partman/choose_partition select finish
  9. #d-i partman/confirm boolean true
  10. #d-i partman/confirm_nooverwrite boolean true
  11.  
  12. ## Partitioning example
  13. # In addition, you'll need to specify the method to use.
  14. # The presently available methods are:
  15. # - regular: use the usual partition types for your architecture
  16. # - lvm: use LVM to partition the disk
  17. # - crypto: use LVM within an encrypted partition
  18. #d-i partman-auto/method string regular
  19.  
  20. # If one of the disks that are going to be automatically partitioned
  21. # contains an old LVM configuration, the user will normally receive a
  22. # warning. This can be preseeded away...
  23. d-i partman-lvm/device_remove_lvm boolean true
  24. # The same applies to pre-existing software RAID array:
  25. d-i partman-md/device_remove_md boolean true
  26. # And the same goes for the confirmation to write the lvm partitions.
  27. d-i partman-lvm/confirm boolean false
  28.  
  29. # You can choose one of the three predefined partitioning recipes:
  30. # - atomic: all files in one partition
  31. # - home: separate /home partition
  32. # - multi: separate /home, /usr, /var, and /tmp partitions
  33. # d-i partman-auto/choose_recipe select home
  34.  
  35. # If not, you can put an entire recipe into the preconfiguration file in one
  36. # (logical) line. This example creates a small /boot partition, suitable
  37. # swap, and uses the rest of the space for the root partition:
  38.  
  39. #d-i partman-auto/expert_recipe string \
  40. # boot-root :: \
  41. # 512 512 512 fat16 \
  42. # $primary{ } \
  43. # method{ efi } \
  44. # label { boot } \
  45. # format{ } \
  46. # . \
  47. # 10240 10240 10240 ext4 \
  48. # method{ format } format{ } \
  49. # use_filesystem{ } filesystem{ ext4 } \
  50. # label { system } \
  51. # mountpoint{ / } \
  52. # . \
  53. # 10240 10240 10240 ext4 \
  54. # method{ format } format{ } \
  55. # use_filesystem{ } filesystem{ ext4 } \
  56. # label { recovery } \
  57. # mountpoint{ /boot/recovery } \
  58. # . \
  59. # 10240 10240 10240 linux-swap \
  60. # method{ swap } format{ } \
  61. # . \
  62. # 10240 128 100000000 ext4 \
  63. # method{ format } format{ } \
  64. # use_filesystem{ } filesystem{ ext4 } \
  65. # label { steam } \
  66. # mountpoint{ /home } \
  67. # .
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement