Guest User

Untitled

a guest
Jul 10th, 2021
278
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.76 KB | None | 0 0
  1. #### Contents of the preconfiguration file (for buster)
  2. ### Localization
  3. # Preseeding only locale sets language, country and locale.
  4. d-i debian-installer/locale string en_US
  5.  
  6. # The values can also be preseeded individually for greater flexibility.
  7. #d-i debian-installer/language string en
  8. #d-i debian-installer/country string NL
  9. #d-i debian-installer/locale string en_GB.UTF-8
  10. # Optionally specify additional locales to be generated.
  11. #d-i localechooser/supported-locales multiselect en_US.UTF-8, nl_NL.UTF-8
  12.  
  13. # Keyboard selection.
  14. d-i keyboard-configuration/xkb-keymap select fr
  15. # d-i keyboard-configuration/toggle select No toggling
  16.  
  17. ### Network configuration
  18. # Disable network configuration entirely. This is useful for cdrom
  19. # installations on non-networked devices where the network questions,
  20. # warning and long timeouts are a nuisance.
  21. #d-i netcfg/enable boolean false
  22.  
  23. # netcfg will choose an interface that has link if possible. This makes it
  24. # skip displaying a list if there is more than one interface.
  25. d-i netcfg/choose_interface select auto
  26.  
  27. # To pick a particular interface instead:
  28. #d-i netcfg/choose_interface select eth1
  29.  
  30. # To set a different link detection timeout (default is 3 seconds).
  31. # Values are interpreted as seconds.
  32. #d-i netcfg/link_wait_timeout string 10
  33.  
  34. # If you have a slow dhcp server and the installer times out waiting for
  35. # it, this might be useful.
  36. #d-i netcfg/dhcp_timeout string 60
  37. #d-i netcfg/dhcpv6_timeout string 60
  38.  
  39. # If you prefer to configure the network manually, uncomment this line and
  40. # the static network configuration below.
  41. #d-i netcfg/disable_autoconfig boolean true
  42.  
  43. # If you want the preconfiguration file to work on systems both with and
  44. # without a dhcp server, uncomment these lines and the static network
  45. # configuration below.
  46. #d-i netcfg/dhcp_failed note
  47. #d-i netcfg/dhcp_options select Configure network manually
  48.  
  49. # Static network configuration.
  50. #
  51. # IPv4 example
  52. #d-i netcfg/get_ipaddress string 192.168.1.42
  53. #d-i netcfg/get_netmask string 255.255.255.0
  54. #d-i netcfg/get_gateway string 192.168.1.1
  55. #d-i netcfg/get_nameservers string 192.168.1.1
  56. #d-i netcfg/confirm_static boolean true
  57. #
  58. # IPv6 example
  59. #d-i netcfg/get_ipaddress string fc00::2
  60. #d-i netcfg/get_netmask string ffff:ffff:ffff:ffff::
  61. #d-i netcfg/get_gateway string fc00::1
  62. #d-i netcfg/get_nameservers string fc00::1
  63. #d-i netcfg/confirm_static boolean true
  64.  
  65. # Any hostname and domain names assigned from dhcp take precedence over
  66. # values set here. However, setting the values still prevents the questions
  67. # from being shown, even if values come from dhcp.
  68. d-i netcfg/get_hostname string unassigned-hostname
  69. d-i netcfg/get_domain string unassigned-domain
  70.  
  71. # If you want to force a hostname, regardless of what either the DHCP
  72. # server returns or what the reverse DNS entry for the IP is, uncomment
  73. # and adjust the following line.
  74. #d-i netcfg/hostname string somehost
  75.  
  76. # Disable that annoying WEP key dialog.
  77. d-i netcfg/wireless_wep string
  78. # The wacky dhcp hostname that some ISPs use as a password of sorts.
  79. #d-i netcfg/dhcp_hostname string radish
  80.  
  81. # If non-free firmware is needed for the network or other hardware, you can
  82. # configure the installer to always try to load it, without prompting. Or
  83. # change to false to disable asking.
  84. #d-i hw-detect/load_firmware boolean true
  85.  
  86. ### Network console
  87. # Use the following settings if you wish to make use of the network-console
  88. # component for remote installation over SSH. This only makes sense if you
  89. # intend to perform the remainder of the installation manually.
  90. #d-i anna/choose_modules string network-console
  91. #d-i network-console/authorized_keys_url string http://10.0.0.1/openssh-key
  92. #d-i network-console/password password r00tme
  93. #d-i network-console/password-again password r00tme
  94.  
  95. ### Mirror settings
  96. # If you select ftp, the mirror/country string does not need to be set.
  97. #d-i mirror/protocol string ftp
  98. d-i mirror/country string manual
  99. d-i mirror/http/hostname string http.us.debian.org
  100. d-i mirror/http/directory string /debian
  101. d-i mirror/http/proxy string
  102.  
  103. # Suite to install.
  104. #d-i mirror/suite string testing
  105. # Suite to use for loading installer components (optional).
  106. #d-i mirror/udeb/suite string testing
  107.  
  108. ### Account setup
  109. # Skip creation of a root account (normal user account will be able to
  110. # use sudo).
  111. #d-i passwd/root-login boolean false
  112. # Alternatively, to skip creation of a normal user account.
  113. #d-i passwd/make-user boolean false
  114.  
  115. # Root password, either in clear text
  116. d-i passwd/root-password password raspberry
  117. #d-i passwd/root-password-again password r00tme
  118. # or encrypted using a crypt(3) hash.
  119. #d-i passwd/root-password-crypted password [crypt(3) hash]
  120.  
  121. # To create a normal user account.
  122. #d-i passwd/user-fullname string Debian User
  123. d-i passwd/username string pi
  124. # Normal user's password, either in clear text
  125. d-i passwd/user-password password raspberry
  126. #d-i passwd/user-password-again password insecure
  127. # or encrypted using a crypt(3) hash.
  128. #d-i passwd/user-password-crypted password [crypt(3) hash]
  129. # Create the first user with the specified UID instead of the default.
  130. #d-i passwd/user-uid string 1010
  131.  
  132. # The user account will be added to some standard initial groups. To
  133. # override that, use this.
  134. #d-i passwd/user-default-groups string audio cdrom video
  135.  
  136. ### Clock and time zone setup
  137. # Controls whether or not the hardware clock is set to UTC.
  138. d-i clock-setup/utc boolean true
  139.  
  140. # You may set this to any valid setting for $TZ; see the contents of
  141. # /usr/share/zoneinfo/ for valid values.
  142. d-i time/zone string UTC
  143.  
  144. # Controls whether to use NTP to set the clock during the install
  145. d-i clock-setup/ntp boolean true
  146. # NTP server to use. The default is almost always fine here.
  147. #d-i clock-setup/ntp-server string ntp.example.com
  148.  
  149. ### Partitioning
  150. ## Partitioning example
  151. # If the system has free space you can choose to only partition that space.
  152. # This is only honoured if partman-auto/method (below) is not set.
  153. #d-i partman-auto/init_automatically_partition select biggest_free
  154.  
  155. # Alternatively, you may specify a disk to partition. If the system has only
  156. # one disk the installer will default to using that, but otherwise the device
  157. # name must be given in traditional, non-devfs format (so e.g. /dev/sda
  158. # and not e.g. /dev/discs/disc0/disc).
  159. # For example, to use the first SCSI/SATA hard disk:
  160. d-i partman-auto/disk string /dev/sda
  161. # In addition, you'll need to specify the method to use.
  162. # The presently available methods are:
  163. # - regular: use the usual partition types for your architecture
  164. # - lvm: use LVM to partition the disk
  165. # - crypto: use LVM within an encrypted partition
  166. d-i partman-auto/method string regular
  167.  
  168. # You can define the amount of space that will be used for the LVM volume
  169. # group. It can either be a size with its unit (eg. 20 GB), a percentage of
  170. # free space or the 'max' keyword.
  171. d-i partman-auto-lvm/guided_size string max
  172.  
  173. # If one of the disks that are going to be automatically partitioned
  174. # contains an old LVM configuration, the user will normally receive a
  175. # warning. This can be preseeded away...
  176. d-i partman-lvm/device_remove_lvm boolean true
  177. # The same applies to pre-existing software RAID array:
  178. d-i partman-md/device_remove_md boolean true
  179. # And the same goes for the confirmation to write the lvm partitions.
  180. d-i partman-lvm/confirm boolean true
  181. d-i partman-lvm/confirm_nooverwrite boolean true
  182.  
  183. # You can choose one of the three predefined partitioning recipes:
  184. # - atomic: all files in one partition
  185. # - home: separate /home partition
  186. # - multi: separate /home, /var, and /tmp partitions
  187. #d-i partman-auto/choose_recipe select atomic
  188.  
  189. # Or provide a recipe of your own...
  190. # If you have a way to get a recipe file into the d-i environment, you can
  191. # just point at it.
  192. #d-i partman-auto/expert_recipe_file string /hd-media/recipe
  193.  
  194. # If not, you can put an entire recipe into the preconfiguration file in one
  195. # (logical) line. This example creates a small /boot partition, suitable
  196. # swap, and uses the rest of the space for the root partition:
  197. d-i partman-auto/expert_recipe string \
  198. boot-root :: \
  199. 256 256 256 ext3 \
  200. $primary{ } $bootable{ } \
  201. method{ format } format{ } \
  202. use_filesystem{ } filesystem{ ext3 } \
  203. label{ boot } \
  204. mountpoint{ /boot } \
  205. . \
  206. 4096 4096 200% linux-swap \
  207. method{ swap } format{ } \
  208. label{ swap_part } \
  209. mountpoint{ /swap } \
  210. . \
  211. 16384 16384 16384 f2fs \
  212. method{ format } format{ } \
  213. use_filesystem{ } filesystem{ f2fs } \
  214. label{ rootfs } \
  215. mountpoint{ / } \
  216. . \
  217. 42000 42000 -1 ext4 \
  218. $primary{ } \
  219. method{ format } format{ } \
  220. use_filesystem{ } filesystem{ ext4 } \
  221. mountpoint{ / } \
  222. . \
  223. 4096 4096 4096 ext4 \
  224. method{ format } format{ } \
  225. use_filesystem{ } filesystem{ ext4 } \
  226. label{ application } \
  227. mountpoint{ /application } \
  228. . \
  229. 4096 4096 4096 btrfs \
  230. method{ format } format{ } \
  231. use_filesystem{ } filesystem{ btrfs } \
  232. label{ database } \
  233. mountpoint{ /database } \
  234. . \
  235. 32768 32768 32768 btrfs \
  236. method{ format } format{ } \
  237. use_filesystem{ } filesystem{ btrfs } \
  238. label{ medias } \
  239. mountpoint{ /medias } \
  240. .
  241.  
  242. # The full recipe format is documented in the file partman-auto-recipe.txt
  243. # included in the 'debian-installer' package or available from D-I source
  244. # repository. This also documents how to specify settings such as file
  245. # system labels, volume group names and which physical devices to include
  246. # in a volume group.
  247.  
  248. # This makes partman automatically partition without confirmation, provided
  249. # that you told it what to do using one of the methods above.
  250. d-i partman-partitioning/confirm_write_new_label boolean true
  251. d-i partman/choose_partition select finish
  252. d-i partman/confirm boolean true
  253. d-i partman/confirm_nooverwrite boolean true
  254.  
  255. # When disk encryption is enabled, skip wiping the partitions beforehand.
  256. #d-i partman-auto-crypto/erase_disks boolean false
  257.  
  258. ## Partitioning using RAID
  259. # The method should be set to "raid".
  260. #d-i partman-auto/method string raid
  261. # Specify the disks to be partitioned. They will all get the same layout,
  262. # so this will only work if the disks are the same size.
  263. #d-i partman-auto/disk string /dev/sda /dev/sdb
  264.  
  265. # Next you need to specify the physical partitions that will be used.
  266. #d-i partman-auto/expert_recipe string \
  267. # multiraid :: \
  268. # 1000 5000 4000 raid \
  269. # $primary{ } method{ raid } \
  270. # . \
  271. # 64 512 300% raid \
  272. # method{ raid } \
  273. # . \
  274. # 500 10000 1000000000 raid \
  275. # method{ raid } \
  276. # .
  277.  
  278. # Last you need to specify how the previously defined partitions will be
  279. # used in the RAID setup. Remember to use the correct partition numbers
  280. # for logical partitions. RAID levels 0, 1, 5, 6 and 10 are supported;
  281. # devices are separated using "#".
  282. # Parameters are:
  283. # <raidtype> <devcount> <sparecount> <fstype> <mountpoint> \
  284. # <devices> <sparedevices>
  285.  
  286. #d-i partman-auto-raid/recipe string \
  287. # 1 2 0 ext3 / \
  288. # /dev/sda1#/dev/sdb1 \
  289. # . \
  290. # 1 2 0 swap - \
  291. # /dev/sda5#/dev/sdb5 \
  292. # . \
  293. # 0 2 0 ext3 /home \
  294. # /dev/sda6#/dev/sdb6 \
  295. # .
  296.  
  297. # For additional information see the file partman-auto-raid-recipe.txt
  298. # included in the 'debian-installer' package or available from D-I source
  299. # repository.
  300.  
  301. # This makes partman automatically partition without confirmation.
  302. d-i partman-md/confirm boolean true
  303. d-i partman-partitioning/confirm_write_new_label boolean true
  304. d-i partman/choose_partition select finish
  305. d-i partman/confirm boolean true
  306. d-i partman/confirm_nooverwrite boolean true
  307.  
  308. ## Controlling how partitions are mounted
  309. # The default is to mount by UUID, but you can also choose "traditional" to
  310. # use traditional device names, or "label" to try filesystem labels before
  311. # falling back to UUIDs.
  312. #d-i partman/mount_style select uuid
  313.  
  314. ### Base system installation
  315. # Configure APT to not install recommended packages by default. Use of this
  316. # option can result in an incomplete system and should only be used by very
  317. # experienced users.
  318. #d-i base-installer/install-recommends boolean false
  319.  
  320. # The kernel image (meta) package to be installed; "none" can be used if no
  321. # kernel is to be installed.
  322. #d-i base-installer/kernel/image string linux-image-686
  323.  
  324. ### Apt setup
  325. # You can choose to install non-free and contrib software.
  326. #d-i apt-setup/non-free boolean true
  327. #d-i apt-setup/contrib boolean true
  328. # Uncomment this if you don't want to use a network mirror.
  329. #d-i apt-setup/use_mirror boolean false
  330. # Select which update services to use; define the mirrors to be used.
  331. # Values shown below are the normal defaults.
  332. #d-i apt-setup/services-select multiselect security, updates
  333. #d-i apt-setup/security_host string security.debian.org
  334.  
  335. # Additional repositories, local[0-9] available
  336. #d-i apt-setup/local0/repository string \
  337. # http://local.server/debian stable main
  338. #d-i apt-setup/local0/comment string local server
  339. # Enable deb-src lines
  340. #d-i apt-setup/local0/source boolean true
  341. # URL to the public key of the local repository; you must provide a key or
  342. # apt will complain about the unauthenticated repository and so the
  343. # sources.list line will be left commented out
  344. #d-i apt-setup/local0/key string http://local.server/key
  345.  
  346. # By default the installer requires that repositories be authenticated
  347. # using a known gpg key. This setting can be used to disable that
  348. # authentication. Warning: Insecure, not recommended.
  349. #d-i debian-installer/allow_unauthenticated boolean true
  350.  
  351. # Uncomment this to add multiarch configuration for i386
  352. #d-i apt-setup/multiarch string i386
  353.  
  354.  
  355. ### Package selection
  356. #tasksel tasksel/first multiselect standard, web-server, kde-desktop
  357.  
  358. # Individual additional packages to install
  359. d-i expect cryptsetup pv f2fs-tools nodejs xserver-xorg-legacy chromium xserver-xorg xinit libgles2-mesa libsdl2-dev mesa-utils matchbox-window-manager mariadb-server bluez unclutter p7zip-full libgpiod2t
  360. # Whether to upgrade packages after debootstrap.
  361. # Allowed values: none, safe-upgrade, full-upgrade
  362. d-i pkgsel/upgrade select full-upgrade
  363.  
  364. # Some versions of the installer can report back on what software you have
  365. # installed, and what software you use. The default is not to report back,
  366. # but sending reports helps the project determine what software is most
  367. # popular and include it on CDs.
  368. #popularity-contest popularity-contest/participate boolean false
  369.  
  370. ### Boot loader installation
  371. # Grub is the default boot loader (for x86). If you want lilo installed
  372. # instead, uncomment this:
  373. #d-i grub-installer/skip boolean true
  374. # To also skip installing lilo, and install no bootloader, uncomment this
  375. # too:
  376. #d-i lilo-installer/skip boolean true
  377.  
  378.  
  379. # This is fairly safe to set, it makes grub install automatically to the MBR
  380. # if no other operating system is detected on the machine.
  381. d-i grub-installer/only_debian boolean true
  382.  
  383. # This one makes grub-installer install to the MBR if it also finds some other
  384. # OS, which is less safe as it might not be able to boot that other OS.
  385. d-i grub-installer/with_other_os boolean true
  386.  
  387. # Due notably to potential USB sticks, the location of the MBR can not be
  388. # determined safely in general, so this needs to be specified:
  389. d-i grub-installer/bootdev string /dev/sda
  390. # To install to the first device (assuming it is not a USB stick):
  391. #d-i grub-installer/bootdev string default
  392.  
  393. # Alternatively, if you want to install to a location other than the mbr,
  394. # uncomment and edit these lines:
  395. #d-i grub-installer/only_debian boolean false
  396. #d-i grub-installer/with_other_os boolean false
  397. #d-i grub-installer/bootdev string (hd0,1)
  398. # To install grub to multiple disks:
  399. #d-i grub-installer/bootdev string (hd0,1) (hd1,1) (hd2,1)
  400.  
  401. # Optional password for grub, either in clear text
  402. #d-i grub-installer/password password r00tme
  403. #d-i grub-installer/password-again password r00tme
  404. # or encrypted using an MD5 hash, see grub-md5-crypt(8).
  405. #d-i grub-installer/password-crypted password [MD5 hash]
  406.  
  407. # Use the following option to add additional boot parameters for the
  408. # installed system (if supported by the bootloader installer).
  409. # Note: options passed to the installer will be added automatically.
  410. #d-i debian-installer/add-kernel-opts string nousb
  411.  
  412. ### Finishing up the installation
  413. # During installations from serial console, the regular virtual consoles
  414. # (VT1-VT6) are normally disabled in /etc/inittab. Uncomment the next
  415. # line to prevent this.
  416. #d-i finish-install/keep-consoles boolean true
  417.  
  418. # Avoid that last message about the install being complete.
  419. d-i finish-install/reboot_in_progress note
  420.  
  421. # This will prevent the installer from ejecting the CD during the reboot,
  422. # which is useful in some situations.
  423. #d-i cdrom-detect/eject boolean false
  424.  
  425. # This is how to make the installer shutdown when finished, but not
  426. # reboot into the installed system.
  427. #d-i debian-installer/exit/halt boolean true
  428. # This will power off the machine instead of just halting it.
  429. #d-i debian-installer/exit/poweroff boolean true
  430.  
  431. ### Preseeding other packages
  432. # Depending on what software you choose to install, or if things go wrong
  433. # during the installation process, it's possible that other questions may
  434. # be asked. You can preseed those too, of course. To get a list of every
  435. # possible question that could be asked during an install, do an
  436. # installation, and then run these commands:
  437. # debconf-get-selections --installer > file
  438. # debconf-get-selections >> file
  439.  
  440.  
  441. #### Advanced options
  442. ### Running custom commands during the installation
  443. # d-i preseeding is inherently not secure. Nothing in the installer checks
  444. # for attempts at buffer overflows or other exploits of the values of a
  445. # preconfiguration file like this one. Only use preconfiguration files from
  446. # trusted locations! To drive that home, and because it's generally useful,
  447. # here's a way to run any shell command you'd like inside the installer,
  448. # automatically.
  449.  
  450. # This first command is run as early as possible, just after
  451. # preseeding is read.
  452. #d-i preseed/early_command string anna-install some-udeb
  453. # This command is run immediately before the partitioner starts. It may be
  454. # useful to apply dynamic partitioner preseeding that depends on the state
  455. # of the disks (which may not be visible when preseed/early_command runs).
  456. #d-i partman/early_command \
  457. # string debconf-set partman-auto/disk "$(list-devices disk | head -n1)"
  458. # This command is run just before the install finishes, but when there is
  459. # still a usable /target directory. You can chroot to /target and use it
  460. # directly, or use the apt-install and in-target commands to easily install
  461. # packages and run commands in the target system.
  462. #d-i preseed/late_command string apt-install zsh; in-target chsh -s /bin/zsh
  463.  
  464.  
Advertisement
Add Comment
Please, Sign In to add comment