Advertisement
Guest User

partman multi disk

a guest
Aug 21st, 2014
262
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.59 KB | None | 0 0
  1. Current multi disk config
  2. d-i partman-auto/expert_recipe string \
  3. recipe :: \
  4. \
  5. 30720 100 30720 ext4 \
  6. $primary{ } \
  7. $bootable{ } \
  8. method{ format } \
  9. device{ /dev/sda } \
  10. format{ } \
  11. use_filesystem{ } \
  12. filesystem{ ext4 } \
  13. mountpoint{ / } .
  14.  
  15. 409600 200 100000000 ext4 \
  16. method{ format } \
  17. device{ /dev/sda } \
  18. format{ } \
  19. use_filesystem{ } \
  20. filesystem{ ext4 } \
  21. mountpoint{ /mysqllog } .
  22.  
  23. 1000 300 100000000 ext4 \
  24. method{ format } \
  25. device{ /dev/sdb } \
  26. format{ } \
  27. use_filesystem{ } \
  28. filesystem{ ext4 } \
  29. mountpoint{ /mysql } .
  30.  
  31. # lovely partition alignment option
  32. d-i partman/alignment string optimal
  33.  
  34.  
  35. previous working single disk config:
  36. d-i partman-auto/expert_recipe string \
  37. recipe :: 500 1000 10000000 ext4 \
  38. $primary{ } \
  39. $bootable{ } \
  40. method{ format } \
  41. format{ } \
  42. use_filesystem{ } \
  43. filesystem{ ext4 } \
  44. mountpoint{ / } .
  45.  
  46. # lovely partition alignment option
  47. d-i partman/alignment string optimal
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement