Guest User

Untitled

a guest
May 23rd, 2018
452
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.28 KB | None | 0 0
  1. d-i debian-installer/locale string fr_FR.UTF-8
  2. d-i console-setup/ask_detect boolean false
  3. d-i keyboard-configuration/layoutcode string fr
  4. d-i netcfg/choose_interface select auto
  5. d-i netcfg/dhcp_failed note
  6. d-i netcfg/dhcp_options select Configure network manually
  7. d-i netcfg/get_hostname string master
  8. d-i netcfg/get_domain string test.local
  9. d-i netcfg/wireless_wep string
  10.  
  11. # Mise en place pour déôt interne
  12.  
  13. d-i mirror/country string manual
  14. d-i mirror/http/hostname string fr.archive.ubuntu.com
  15. d-i mirror/http/directory string /ubuntu
  16.  
  17. d-i mirror/http/proxy string
  18. d-i clock-setup/utc boolean true
  19. d-i time/zone string Europe/Paris
  20. d-i clock-setup/ntp boolean true
  21. d-i clock-setup/ntp-server string 192.168.0.10
  22.  
  23. # Partitionnement
  24.  
  25. d-i partman-auto/disk string /dev/sda
  26. d-i partman-lvm/device_remove_lvm boolean true
  27. d-i partman-md/device_remove_md boolean true
  28. d-i partman-lvm/confirm boolean true
  29. d-i partman-auto-lvm/guided_size string max
  30. d-i partman-auto/method string crypto
  31. d-i partman-crypto/passphrase password azerty
  32. d-i partman-crypto/passphrase-again password azerty
  33. d-i partman-crypto/weak_passphrase boolean true
  34. d-i partman-auto/choose_recipe select boot-crypto
  35. d-i partman-auto-lvm/new_vg_name string crypt
  36. d-i partman-auto/expert_recipe string \
  37. boot-crypto :: \
  38. 1 1 1 free \
  39. $bios_boot{ } \
  40. method{ biosgrub } . \
  41. 256 256 256 fat32 \
  42. $primary{ } $lvmignore{ } \
  43. method{ efi } format{ } . \
  44. 512 512 512 ext3 \
  45. $primary{ } $bootable{ } \
  46. method{ format } format{ } \
  47. use_filesystem{ } filesystem{ ext3 } \
  48. mountpoint{ /boot } . \
  49. 20000 50 10000 ext4 \
  50. $lvmok{ } \
  51. method{ format } format{ } \
  52. use_filesystem{ } filesystem{ ext4 } \
  53. mountpoint{ / } . \
  54. 4000 2000 4000 ext4 \
  55. $lvmok{ } \
  56. method{ format } format{ } \
  57. use_filesystem{ } filesystem{ ext4 } \
  58. mountpoint{ /tmp } \
  59. . \
  60. 4000 2001 4000 ext4 \
  61. $lvmok{ } \
  62. method{ format } format{ } \
  63. use_filesystem{ } filesystem{ ext4 } \
  64. mountpoint{ /var } \
  65. . \
  66. 2000 512 4000 linux-swap \
  67. $lvmok{ } \
  68. method{ swap } format{ } \
  69. . \
  70. 40000 10000 -1 ext4 \
  71. $lvmok{ } \
  72. method{ format } format{ } \
  73. use_filesystem{ } filesystem{ ext4 } \
  74. mountpoint{ /home } \
  75. .
  76. d-i partman-lvm/confirm boolean true
  77. d-i partman-partitioning/confirm_write_new_label boolean true
  78. d-i partman/choose_partition select finish
  79. d-i partman/confirm boolean true
  80. d-i partman/confirm_nooverwrite boolean true
  81.  
  82. # Définition des mots de passe
  83.  
  84. d-i passwd/root-login boolean true
  85. d-i passwd/root-password-crypted password $1$.xKCT1$omtCq9rVm5XuM6j9iDhcu0
  86. d-i passwd/user-fullname string admin
  87. d-i passwd/username string admin
  88. d-i passwd/user-password-crypted password $1$.xKCT1$omtCq9rVm5XuM6j9iDhcu0
  89. d-i user-setup/encrypt-home boolean false
  90. d-i pkgsel/update-policy select none
  91.  
  92. # Installation minimal
  93.  
  94. tasksel tasksel/first multiselect minimal
  95.  
  96. # Configuration de Grub
  97.  
  98. d-i grub-installer/only_debian boolean true
  99. d-i grub-installer/with_other_os boolean false
  100. d-i grub-installer/bootdev string /dev/sda
  101.  
  102. d-i cdrom-detect/eject boolean false
  103. d-i finish-install/reboot_in_progress note
  104. d-i debian-installer/exit/poweroff boolean true
  105.  
  106. xserver-xorg xserver-xorg/autodetect_monitor boolean true
  107. xserver-xorg xserver-xorg/config/monitor/selection-method \
  108. select medium
  109. xserver-xorg xserver-xorg/config/monitor/mode-list \
  110. select 1024x768 @ 60 Hz
Advertisement
Add Comment
Please, Sign In to add comment