Advertisement
Guest User

Untitled

a guest
Jun 3rd, 2014
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.62 KB | None | 0 0
  1. # Disk
  2. ###################################
  3. ############ PART###################
  4. partman-base partman/exception_handler_note note
  5. d-i partman/default_filesystem string ext4
  6. d-i partman/alignment select cylinder
  7. d-i partman-auto/disk string /dev/sda /dev/sdb
  8. d-i partman-auto/method string raid
  9. d-i partman-lvm/device_remove_lvm boolean true
  10. d-i partman-md/device_remove_md boolean true
  11. d-i partman-md/confirm_nooverwrite select Yes
  12. # Next you need to specify the physical partitions that will be used.
  13. d-i partman-auto/expert_recipe string \
  14. multiraid :: \
  15. 20240 1 20240 raid \
  16. $primary{ } method{ raid } \
  17. . \
  18.  
  19. 10240 1 10240 raid \
  20. $primary{ } method{ raid } \
  21. . \
  22.  
  23. 10240 1 10240 none \
  24. . \
  25.  
  26. 10240 1 10240 none \
  27. . \
  28. 10240 1 10240 none \
  29. .
  30.  
  31. #d-i partman/confirm_nooverwrite select Yes
  32. d-i partman-md/confirm_nooverwrite select Yes
  33. #d-i partman/confirm_nooverwrite boolean true
  34. #d-i partman-md/confirm_nooverwrite boolean true
  35. # No swap
  36. #d-i partman-basicfilesystems/no_swap select No
  37. d-i partman-partitioning/confirm_write_new_label boolean true
  38. d-i partman/choose_partition \
  39. select Finish partitioning and write changes to disk
  40. d-i mdadm/boot_degraded boolean true
  41. d-i partman-auto-raid/recipe string \
  42. 1 2 0 ext4 / \
  43. /dev/sda1#/dev/sdb1 \
  44. . \
  45. 1 2 0 swap - \
  46. /dev/sda2#/dev/sdb2 \
  47. .
  48. d-i mdadm/boot_degraded boolean true
  49. # This makes partman automatically partition without confirmation.
  50. d-i partman-md/confirm boolean true
  51. d-i partman-partitioning/confirm_write_new_label boolean true
  52. d-i partman/choose_partition \
  53. select Finish partitioning and write changes to disk
  54. d-i partman/confirm boolean true
  55. d-i partman-basicfilesystems/no_swap select No
  56. d-i partman/confirm_nooverwrite boolean true
  57. d-i partman/mount_style select uuid
  58.  
  59. tasksel tasksel/first multiselect standard
  60. d-i pkgsel/include string openssh-server nano acpid vim installation-report
  61. d-i pkgsel/update-policy select none
  62. popularity-contest popularity-contest/participate boolean false
  63.  
  64. d-i grub-installer/only_debian boolean true
  65. d-i grub-installer/with_other_os boolean false
  66. d-i grub-installer/bootdev string (hd0,0) (hd1,0)
  67. d-i finish-install/reboot_in_progress note
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement