forked from yannbreizh/debian-installer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdebian-get-selections-installer
1313 lines (1313 loc) · 69.5 KB
/
debian-get-selections-installer
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Wireless network:
# Choices: Enter ESSID manually
netcfg netcfg/wireless_show_essids select
# Unsafe swap space detected
partman-crypto partman-crypto/unsafe_swap error
# Amount of volume group to use for guided partitioning:
partman-auto-lvm partman-auto-lvm/guided_size string max
unknown partman-auto-lvm/guided_size string max
# CD-ROM detected
d-i cdrom-detect/success note
#
# Choices: Albania, Andorra, Armenia, Austria, Azerbaijan, Belarus, Belgium, Bosnia and Herzegovina, Bulgaria, Croatia, Cyprus, Czechia, Denmark, Estonia, Faroe Islands, Finland, France, Georgia, Germany, Gibraltar, Greece, Greenland, Guernsey, Holy See (Vatican City State), Hungary, Iceland, Ireland, Isle of Man, Italy, Jersey, Latvia, Liechtenstein, Lithuania, Luxembourg, Macedonia\, Republic of, Malta, Moldova, Monaco, Montenegro, Netherlands, Norway, Poland, Portugal, Romania, Russian Federation, San Marino, Serbia, Slovakia, Slovenia, Spain, Svalbard and Jan Mayen, Sweden, Switzerland, Ukraine, United Kingdom, Åland Islands
d-i localechooser/countrylist/Europe select
# Failed to delete the software RAID device
partman-md partman-md/deletefailed error
# Retry mounting the CD-ROM?
d-i cdrom-detect/retry boolean true
# Username for your account:
unknown passwd/username string ansible
user-setup-udeb passwd/username string ansible
# Type for the new partition:
# Choices: Primary, Logical
partman-partitioning partman-partitioning/new_partition_type select
# Volume group to reduce:
# Choices:
partman-lvm partman-lvm/vgreduce_names select
# Devices for the new volume group:
# Choices:
partman-lvm partman-lvm/vgcreate_parts multiselect
# Debian archive mirror hostname:
choose-mirror-bin mirror/ftp/hostname string mirror
# Continue installation without /boot partition?
partman-auto-lvm partman-auto-lvm/no_boot boolean
# Number of active devices for the RAID array:
partman-md partman-md/raiddevcount string
# Bad archive mirror
choose-mirror-bin mirror/bad error
# Invalid WEP key
netcfg netcfg/invalid_wep error
# Error while creating a new logical volume
partman-lvm partman-lvm/lvcreate_error error
# Downloading local repository key failed:
# Choices: Retry, Ignore
apt-setup-udeb apt-setup/local/key-error select Retry
# Web server started
d-i save-logs/httpd_running note
# Device in use
partman-base partman-base/devicelocked error
# iSCSI configuration actions
# Choices: Log into iSCSI targets, Finish
partman-iscsi partman-iscsi/mainmenu select
# Force UEFI installation?
partman-efi partman-efi/non_efi_system boolean
#
# Choices: Russian Federation, Ukraine, other
d-i localechooser/shortlist/ru select
# Enable shadow passwords?
user-setup-udeb passwd/shadow boolean true
# Mount options:
# Choices:
partman-basicfilesystems partman-basicfilesystems/mountoptions multiselect
# Type of wireless network:
# Choices: Infrastructure (Managed) network, Ad-hoc network (Peer to peer)
netcfg netcfg/wireless_adhoc_managed select Infrastructure (Managed) network
# iSCSI initiator username for :
partman-iscsi partman-iscsi/login/username string
# Is the system clock set to UTC?
clock-setup clock-setup/utc boolean true
unknown clock-setup/utc boolean true
# for internal use only
d-i debian-installer/consoledisplay string console-setup
# Wireless network type for :
# Choices: WEP/Open Network, WPA/WPA2 PSK
netcfg netcfg/wireless_security_type select wpa
# for internal use; can be preseeded
finish-install finish-install/keep-consoles boolean false
# Scan another CD or DVD?
apt-cdrom-setup apt-setup/cdrom/set-double boolean true
# Really delete this software RAID device?
partman-md partman-md/deleteverify boolean false
# Are you sure you want a bootable logical partition?
partman-partitioning partman-partitioning/bootable_logical boolean false
# Help on partitioning
partman-target partman-target/help note
# Empty password
user-setup-udeb user-setup/password-empty error
# Continue with partitioning?
partman-partitioning partman-partitioning/unsupported_label boolean false
# for internal use; can be preseeded
partman-partitioning partman-partitioning/default_label string
# Failed to create a swap space
partman-basicfilesystems partman-basicfilesystems/create_swap_failed error
# Invalid hostname
netcfg netcfg/invalid_hostname error
# IPv6 unsupported on point-to-point links
netcfg netcfg/no_ipv6_pointopoint error
# Really erase the data on ?
partman-crypto partman-crypto/plain_warn_erase boolean false
# Language:
# Choices: C${!TAB}-${!TAB}No localization, Albanian${!TAB}-${!TAB}Shqip, Arabic${!TAB}-${!TAB}عربي, Asturian${!TAB}-${!TAB}Asturianu, Basque${!TAB}-${!TAB}Euskara, Belarusian${!TAB}-${!TAB}Беларуская, Bosnian${!TAB}-${!TAB}Bosanski, Bulgarian${!TAB}-${!TAB}Български, Catalan${!TAB}-${!TAB}Català, Chinese (Simplified)${!TAB}-${!TAB}中文(简体), Chinese (Traditional)${!TAB}-${!TAB}中文(繁體), Croatian${!TAB}-${!TAB}Hrvatski, Czech${!TAB}-${!TAB}Čeština, Danish${!TAB}-${!TAB}Dansk, Dutch${!TAB}-${!TAB}Nederlands, English${!TAB}-${!TAB}English, Esperanto${!TAB}-${!TAB}Esperanto, Estonian${!TAB}-${!TAB}Eesti, Finnish${!TAB}-${!TAB}Suomi, French${!TAB}-${!TAB}Français, Galician${!TAB}-${!TAB}Galego, Georgian${!TAB}-${!TAB}ქართული, German${!TAB}-${!TAB}Deutsch, Greek${!TAB}-${!TAB}Ελληνικά, Hebrew${!TAB}-${!TAB}עברית, Hungarian${!TAB}-${!TAB}Magyar, Icelandic${!TAB}-${!TAB}Íslenska, Indonesian${!TAB}-${!TAB}Bahasa Indonesia, Irish${!TAB}-${!TAB}Gaeilge, Italian${!TAB}-${!TAB}Italiano, Japanese${!TAB}-${!TAB}日本語, Kazakh${!TAB}-${!TAB}Қазақ, Korean${!TAB}-${!TAB}한국어, Kurdish${!TAB}-${!TAB}Kurdî, Lao${!TAB}-${!TAB}ລາວ, Latvian${!TAB}-${!TAB}Latviski, Lithuanian${!TAB}-${!TAB}Lietuviškai, Macedonian${!TAB}-${!TAB}Македонски, Northern Sami${!TAB}-${!TAB}Sámegillii, Norwegian Bokmaal${!TAB}-${!TAB}Norsk bokmål, Norwegian Nynorsk${!TAB}-${!TAB}Norsk nynorsk, Persian${!TAB}-${!TAB}فارسی, Polish${!TAB}-${!TAB}Polski, Portuguese${!TAB}-${!TAB}Português, Portuguese (Brazil)${!TAB}-${!TAB}Português do Brasil, Romanian${!TAB}-${!TAB}Română, Russian${!TAB}-${!TAB}Русский, Serbian (Cyrillic)${!TAB}-${!TAB}Српски, Slovak${!TAB}-${!TAB}Slovenčina, Slovenian${!TAB}-${!TAB}Slovenščina, Spanish${!TAB}-${!TAB}Español, Swedish${!TAB}-${!TAB}Svenska, Tagalog${!TAB}-${!TAB}Tagalog, Tajik${!TAB}-${!TAB}Тоҷикӣ, Thai${!TAB}-${!TAB}ภาษาไทย, Turkish${!TAB}-${!TAB}Türkçe, Ukrainian${!TAB}-${!TAB}Українська, Uyghur${!TAB}-${!TAB}ئۇيغۇرچە, Vietnamese${!TAB}-${!TAB}Tiếng Việt, Welsh${!TAB}-${!TAB}Cymraeg
d-i localechooser/languagelist select en
# for internal use; can be preseeded
netcfg netcfg/hostname string debian10-preseeds
unknown netcfg/hostname string debian10-preseeds
# Force GRUB installation to the EFI removable media path?
grub-installer grub-installer/force-efi-extra-removable boolean false
# Debian archive mirror:
# Choices:
d-i mirror/https/mirror select deb.debian.org
#
# Choices: China, Singapore, Taiwan, Hong Kong, other
d-i localechooser/shortlist/zh_TW select
# btrfs root file system not supported without separate /boot
partman-btrfs partman-btrfs/btrfs_root error
# Unable to install GRUB in
grub-installer grub-installer/grub-install-failed error
# Use Control+Alt+Backspace to terminate the X server?
d-i keyboard-configuration/ctrl_alt_bksp boolean false
# Dummy template for preseeding unavailable questions
unknown netcfg/domain string pre.cdn.orange.com
# Debootstrap Error
bootstrap-base base-installer/no_codename error
# Go back to the menu and correct this problem?
partman-ext3 partman/boot_not_first_partition boolean
# for internal use only
d-i cdrom-detect/cdrom_fs string iso9660
# Type of encryption key for this partition:
# Choices:
partman-crypto partman-crypto/keytype select
# Wait another 30 seconds for hwclock to set the clock?
clock-setup clock-setup/hwclock-wait boolean false
# New partition size:
partman-partitioning partman-partitioning/new_size string some number
# Key size for this partition:
# Choices:
partman-crypto partman-crypto/keysize select
# Country, territory or area:
# Choices: Antigua and Barbuda, Australia, Botswana, Canada, Hong Kong, India, Ireland, Israel, New Zealand, Nigeria, Philippines, Seychelles, Singapore, South Africa, United Kingdom, United States, Zambia, Zimbabwe, other
d-i localechooser/shortlist select US
# for internal use only
d-i cdrom-detect/usb-hdd boolean false
#
# Choices: Serbia, Montenegro, other
d-i localechooser/shortlist/sr select
# Percentage of the file system blocks reserved for the super-user:
partman-basicfilesystems partman-basicfilesystems/specify_reserved string
# This is an overview of your currently configured partitions and mount points. Select a partition to modify its settings (file system, mount point, etc.), a free space to create partitions, or a device to initialize its partition table.
# Choices: Guided partitioning, Configure software RAID, Configure the Logical Volume Manager, Configure encrypted volumes, Configure iSCSI volumes, , LVM VG debian\, LV pve_data - 36.8 GB Linux device-mapper (linear), ${!TAB}${!ALIGN=RIGHT}#1${!TAB}${!TAB}${!ALIGN=RIGHT}36.8 GB${!TAB}${!TAB}f${!TAB}ext4${!TAB}${!TAB}/data${!TAB}, LVM VG debian\, LV pve_root - 8.2 GB Linux device-mapper (linear), ${!TAB}${!ALIGN=RIGHT}#1${!TAB}${!TAB}${!ALIGN=RIGHT}8.2 GB${!TAB}${!TAB}f${!TAB}ext4${!TAB}${!TAB}/${!TAB}, LVM VG debian\, LV pve_swap - 8.2 GB Linux device-mapper (linear), ${!TAB}${!ALIGN=RIGHT}#1${!TAB}${!TAB}${!ALIGN=RIGHT}8.2 GB${!TAB}${!TAB}f${!TAB}swap${!TAB}${!TAB}swap${!TAB}, SCSI3 (0\,0\,0) (sda) - 53.7 GB ATA VBOX HARDDISK, ${!TAB}${!ALIGN=RIGHT}#1${!TAB}primary${!TAB}${!ALIGN=RIGHT}499.1 MB${!TAB}B${!TAB}F${!TAB}ext4${!TAB}${!TAB}/boot${!TAB}, ${!TAB}${!ALIGN=RIGHT}#5${!TAB}logical${!TAB}${!ALIGN=RIGHT}53.2 GB${!TAB}${!TAB}K${!TAB}lvm${!TAB}${!TAB}${!TAB}, , Undo changes to partitions, Finish partitioning and write changes to disk
partman-base partman/choose_partition select 90finish__________finish
unknown partman/choose_partition select 90finish__________finish
# for internal use
d-i keyboard-configuration/layoutcode string fr
# Are you sure you want to use a random key?
partman-crypto partman-crypto/use_random_for_nonswap boolean false
#
# Choices: India, Sri Lanka, other
d-i localechooser/shortlist/ta select
# Name server addresses:
netcfg netcfg/get_nameservers string 192.168.10.1
unknown netcfg/get_nameservers string 192.168.10.1
# for internal use; can be preseeded
disk-detect disk-detect/dmraid/enable boolean false
# is too big
partman-auto-lvm partman-auto-lvm/big_guided_size error
# Kill switch enabled on
netcfg netcfg/kill_switch_enabled note
# Go back and try a different mirror?
choose-mirror-bin mirror/no-default boolean true
# Install the GRUB boot loader to the multipath device?
grub-installer grub-installer/multipath boolean true
#
# Choices: Afghanistan, Bahrain, Bangladesh, Bhutan, Brunei Darussalam, Cambodia, China, Hong Kong, India, Indonesia, Iran\, Islamic Republic of, Iraq, Israel, Japan, Jordan, Kazakhstan, Korea\, Democratic People's Republic of, Korea\, Republic of, Kuwait, Kyrgyzstan, Lao People's Democratic Republic, Lebanon, Macao, Malaysia, Mongolia, Myanmar, Nepal, Oman, Pakistan, Palestine\, State of, Philippines, Qatar, Saudi Arabia, Singapore, Sri Lanka, Syrian Arab Republic, Taiwan, Tajikistan, Thailand, Timor-Leste, Turkey, Turkmenistan, United Arab Emirates, Uzbekistan, Vietnam, Yemen
d-i localechooser/countrylist/Asia select
# Choose an installation step:
# Choices:
d-i debian-installer/missing-provide select ${DEFAULT}
# Mount point for this partition:
partman-basicfilesystems partman-basicfilesystems/mountpoint_manual string
# HTTP proxy information (blank for none):
choose-mirror-bin mirror/http/proxy string
unknown mirror/http/proxy string
# Dummy template for preseeding unavailable questions
unknown tasksel/first string standard
# Updates management on this system:
# Choices: No automatic updates, Install security updates automatically
pkgsel pkgsel/update-policy select none
# Failed to install the base system
bootstrap-base base-installer/debootstrap-failed error
# iSCSI target username for :
partman-iscsi partman-iscsi/login/incoming_username string
# Method for temporarily toggling between national and Latin input:
# Choices: No temporary switch, Both Logo keys, Right Alt (AltGr), Right Logo key, Left Alt, Left Logo key
d-i keyboard-configuration/switch select No temporary switch
# location
# Choices: Auckland, Chatham Islands
tzsetup-udeb tzsetup/country/NZ select Pacific/Auckland
# Architecture not supported
choose-mirror-bin mirror/noarch error
# Debootstrap Error
bootstrap-base base-installer/debootstrap/error/invalidrel error
# Network autoconfiguration failed
netcfg netcfg/dhcp_failed note
unknown netcfg/dhcp_failed note
# for internal use
d-i keyboard-configuration/store_defaults_in_debconf_db boolean true
# Continue without a default route?
netcfg netcfg/no_default_route boolean
# location
# Choices: McMurdo, Rothera, Palmer, Mawson, Davis, Casey, Vostok, Dumont-d'Urville, Syowa
tzsetup-udeb tzsetup/country/AQ select
# Continue the installation in the selected language?
d-i localechooser/translation/warn-light boolean true
# Not installing to unclean target
base-installer base-installer/unclean_target_cancel error
# Debootstrap Error
bootstrap-base base-installer/debootstrap/error/nogetrel error
# for internal use only
d-i debian-installer/exit/always_halt boolean false
# Mount point for this partition:
# Choices: / - the root file system, /boot - static files of the boot loader, /home - user home directories, /tmp - temporary files, /usr - static data, /var - variable data, /srv - data for services provided by this system, /opt - add-on application software packages, /usr/local - local hierarchy, Enter manually, Do not mount it
partman-basicfilesystems partman-basicfilesystems/mountpoint select
# What to do with this device:
# Choices:
partman-base partman/storage_device select
# System locale:
# Choices:
d-i debian-installer/locale select en_US
# Wireless ESSID for :
netcfg netcfg/wireless_essid string
#
# Choices: Aruba, Belgium, Netherlands, other
d-i localechooser/shortlist/nl select
# Failed to load installer component
d-i anna/install_failed error
# for internal use; can be preseeded
# Choices: none, safe-upgrade, full-upgrade
pkgsel pkgsel/upgrade select full-upgrade
unknown pkgsel/upgrade select full-upgrade
# Logical volume size:
partman-lvm partman-lvm/lvcreate_size string
#
# Choices: Brazil, Portugal, other
d-i localechooser/shortlist/pt_BR select
# for internal use; can be preseeded
partman-auto partman-auto/expert_recipe_file string /tmp/expert_recipe
# Do you want to return to the partitioning menu?
partman-ext3 partman-ext3/bad_alignment boolean
# Write the changes to disk and configure encrypted volumes?
d-i partman-crypto/confirm_nooverwrite boolean false
# location
# Choices: Johnston Atoll, Midway Islands, Wake Island
tzsetup-udeb tzsetup/country/UM select Pacific/Midway
# for internal use; can be preseeded
d-i preseed/run string
# for internal use; can be preseeded
partman-auto-crypto partman-auto-crypto/erase_disks boolean true
# Debootstrap Error
bootstrap-base base-installer/debootstrap/error/unknownrelsig error
# Load missing firmware from removable media?
d-i hw-detect/load_firmware boolean true
# Go back to the menu and resume partitioning?
partman-efi partman-efi/no_efi boolean
# for internal use
d-i keyboard-configuration/variantcode string latin9
#
# Choices: Brazil, Portugal, other
d-i localechooser/shortlist/pt select
# The size entered is too small
partman-partitioning partman-partitioning/small_new_size error
# Active devices for the RAID array:
# Choices:
partman-md partman-md/raiddevs multiselect
# Debian archive mirror hostname:
d-i mirror/https/hostname string mirror
# Partitioning method:
# Choices:
partman-auto partman-auto/init_automatically_partition select
# zone
# Choices: Eastern, Central, Mountain, Pacific, Alaska, Hawaii, Arizona, East Indiana, Samoa
tzsetup-udeb tzsetup/country/US select US/Eastern
# Passphrase input error
partman-crypto partman-crypto/passphrase-mismatch error
# No volume group found
partman-lvm partman-lvm/vgreduce_novg error
# Scan another CD or DVD?
apt-cdrom-setup apt-setup/cdrom/set-first boolean false
unknown apt-setup/cdrom/set-first boolean false
# Go back to the menu?
partman-basicmethods partman-basicmethods/method_only boolean
# No logical volume name entered
partman-lvm partman-lvm/lvcreate_nonamegiven error
# Debian archive mirror country:
# Choices: enter information manually
choose-mirror-bin mirror/https/countries select US
# Not enough RAID partitions specified
partman-auto-raid partman-auto-raid/notenoughparts error
# Invalid logical volume or volume group name
partman-lvm partman-lvm/badnamegiven error
# for internal use; can be preseeded
# Choices: cylinder, minimal, optimal
partman-base partman/alignment select optimal
# Installation step failed
d-i debian-installer/main-menu/item-failure error
# for internal use; can be preseeded
# Choices: traditional, label, uuid
partman-target partman/mount_style select uuid
# location
# Choices: Guayaquil, Galapagos
tzsetup-udeb tzsetup/country/EC select America/Guayaquil
# Volume group to delete:
# Choices:
partman-lvm partman-lvm/vgdelete_names select
# Failed to run preseeded command
d-i preseed/command_failed error
# Label for the file system in this partition:
partman-basicfilesystems partman-basicfilesystems/choose_label string
# Auto-configure networking?
netcfg netcfg/use_autoconfig boolean false
# country code or "manual" (for internal use)
choose-mirror-bin mirror/country string manual
unknown mirror/country string manual
# Integrity test successful
d-i cdrom-checker/passed note
# Unusable free space
partman-auto partman-auto/unusable_space error
# No RAID partitions available
partman-md partman-md/noparts error
# Is this information correct?
netcfg netcfg/confirm_static boolean true
unknown netcfg/confirm_static boolean true
# for internal use; can be preseeded
network-preseed auto-install/defaultroot string d-i/buster/./preseed.cfg
# city
# Choices: Ulaanbaatar, Hovd, Choibalsan
tzsetup-udeb tzsetup/country/MN select Asia/Ulaanbaatar
# No volume group found
partman-lvm partman-lvm/vgextend_novg error
# Write previous changes to disk and continue?
partman-partitioning partman-partitioning/confirm_resize boolean
# for internal use; can be preseeded
partman-auto-raid partman-auto-raid/recipe string
# Mount point for this partition:
# Choices: /dos, /windows, Enter manually, Do not mount it
partman-basicfilesystems partman-basicfilesystems/fat_mountpoint select
# Installer components to load:
# Choices:
d-i anna/choose_modules_lowmem multiselect
# Typical usage of this partition:
# Choices:
partman-basicfilesystems partman-basicfilesystems/specify_usage select
# Invalid input
partman-auto-lvm partman-auto-lvm/bad_guided_size error
# Non-existing physical volume
partman-auto-lvm partman-auto-lvm/no_such_pv error
# location
# Choices: Madrid, Ceuta, Canary Islands
tzsetup-udeb tzsetup/country/ES select Europe/Madrid
#
# Choices: Argentina, Bolivia, Chile, Colombia, Costa Rica, Cuba, Ecuador, El Salvador, Spain, United States, Guatemala, Honduras, Mexico, Nicaragua, Panama, Paraguay, Peru, Puerto Rico, Dominican Republic, Uruguay, Venezuela, other
d-i localechooser/shortlist/es select
# No DHCP client found
netcfg netcfg/no_dhcp_client error
# Module needed for accessing the CD-ROM:
# Choices:
d-i cdrom-detect/cdrom_module select none
# Select disk to partition:
# Choices:
partman-auto partman-auto/select_disk select
# Invalid mount point
partman-basicfilesystems partman-basicfilesystems/bad_mountpoint error
# Keep current keyboard options in the configuration file?
d-i keyboard-configuration/unsupported_config_options boolean true
# No logical volume found
partman-lvm partman-lvm/lvdelete_nolv error
# IP address:
netcfg netcfg/get_ipaddress string 192.168.10.33
unknown netcfg/get_ipaddress string 192.168.10.33
# Use unrecommended JFS root file system?
partman-jfs partman-jfs/jfs_root boolean false
# apt configuration problem
apt-cdrom-setup apt-setup/cdrom/failed error
# Install GRUB?
grub-installer grub-installer/grub_not_mature_on_this_platform boolean false
# Location of initial preconfiguration file:
network-preseed preseed/url string
#
# Choices:
partman-base partman/exception_handler select
# Manually select a CD-ROM module and device?
d-i cdrom-detect/manual_config boolean true
# Software RAID configuration actions
# Choices: Create MD device, Delete MD device, Finish
partman-md partman-md/mainmenu select
#
# Choices: Belize, Costa Rica, El Salvador, Guatemala, Honduras, Nicaragua, Panama
d-i localechooser/countrylist/Central_America select
# Start PC card services?
d-i hw-detect/start_pcmcia boolean true
# Allow login as root?
user-setup-udeb passwd/root-login boolean true
# Debian archive mirror directory:
choose-mirror-bin mirror/ftp/directory string /debian/
# Create a normal user account now?
unknown passwd/make-user boolean true
user-setup-udeb passwd/make-user boolean true
#
# Choices: South Sudan, Jordan, United Arab Emirates, Bahrain, Algeria, Syrian Arab Republic, Saudi Arabia, Sudan, Iraq, Kuwait, Morocco, India, Yemen, Tunisia, Oman, Qatar, Lebanon, Libya, Egypt, other
d-i localechooser/shortlist/ar select
# zone
# Choices: Moscow-01 - Kaliningrad, Moscow+00 - Moscow, Moscow+01 - Samara, Moscow+02 - Yekaterinburg, Moscow+03 - Omsk, Moscow+04 - Krasnoyarsk, Moscow+05 - Irkutsk, Moscow+06 - Yakutsk, Moscow+07 - Vladivostok, Moscow+08 - Magadan, Moscow+09 - Kamchatka
tzsetup-udeb tzsetup/country/RU select Europe/Moscow
# Logical volume:
# Choices:
partman-lvm partman-lvm/lvdelete_lvnames select
# Use non-free software?
apt-mirror-setup apt-setup/non-free boolean false
unknown apt-setup/non-free boolean false
# Location for the new partition:
# Choices: Beginning, End
partman-partitioning partman-partitioning/new_partition_place select
# PCMCIA resource range options:
d-i hw-detect/pcmcia_resources string
# NTP server to use:
clock-setup clock-setup/ntp-server string 0.debian.pool.ntp.org
# Device for boot loader installation:
grub-installer grub-installer/bootdev string /dev/sda
unknown grub-installer/bootdev string /dev/sda
# Debootstrap Error
bootstrap-base base-installer/debootstrap/fallback-error error
# for internal use only
d-i debconf/translations-dropped boolean false
# Failed to mount /target/proc
nobootloader nobootloader/mounterr error
# Debian archive mirror hostname:
choose-mirror-bin mirror/http/hostname string ftp.fr.debian.org
unknown mirror/http/hostname string ftp.fr.debian.org
# for internal use; can be preseeded
partman-auto partman-auto/disk string /dev/sda
unknown partman-auto/disk string /dev/sda
# for internal use; can be preseeded
disk-detect disk-detect/multipath/enable boolean false
# Keymap to use:
# Choices: American English, Albanian, Arabic, Asturian, Bangladesh, Belarusian, Bengali, Belgian, Bosnian, Brazilian, British English, Bulgarian (BDS layout), Bulgarian (phonetic layout), Burmese, Canadian French, Canadian Multilingual, Catalan, Chinese, Croatian, Czech, Danish, Dutch, Dvorak, Dzongkha, Esperanto, Estonian, Ethiopian, Finnish, French, Georgian, German, Greek, Gujarati, Gurmukhi, Hebrew, Hindi, Hungarian, Icelandic, Irish, Italian, Japanese, Kannada, Kazakh, Khmer, Kirghiz, Korean, Kurdish (F layout), Kurdish (Q layout), Lao, Latin American, Latvian, Lithuanian, Macedonian, Malayalam, Nepali, Northern Sami, Norwegian, Persian, Philippines, Polish, Portuguese, Punjabi, Romanian, Russian, Serbian (Cyrillic), Sindhi, Sinhala, Slovak, Slovenian, Spanish, Swedish, Swiss French, Swiss German, Tajik, Tamil, Telugu, Thai, Tibetan, Turkish (F layout), Turkish (Q layout), Ukrainian, Uyghur, Vietnamese
d-i keyboard-configuration/xkb-keymap select fr(latin9)
# Downloading a file failed:
# Choices: Retry, Change mirror, Ignore
apt-mirror-setup apt-setup/mirror/error select Retry
# for internal use; can be preseeded
d-i preseed/file string file:///preseed.cfg
# Error reading Release file
d-i cdrom-detect/no-release error
# Use a network mirror?
apt-mirror-setup apt-setup/use_mirror boolean true
unknown apt-setup/use_mirror boolean true
# Continue with partitioning?
partman-partitioning partman-partitioning/unknown_label boolean true
# Invalid username
user-setup-udeb passwd/username-bad error
# Unable to configure GRUB
grub-installer grub-installer/multipath-error error
# Error while reducing volume group
partman-lvm partman-lvm/vgreduce_error error
# Primary network interface:
# Choices:
netcfg netcfg/choose_interface select auto
unknown netcfg/choose_interface select auto
# for internal use; can be preseeded
netcfg netcfg/disable_autoconfig boolean true
unknown netcfg/disable_autoconfig boolean true
# for internal use; can be preseeded
apt-cdrom-setup apt-setup/disable-cdrom-entries boolean false
# Integrity test failed
d-i cdrom-checker/mismatch error
# Failure of key exchange and association
netcfg netcfg/wpa_supplicant_failed note
# for internal use; can be preseeded
partman-iscsi partman-iscsi/login/all_targets boolean false
# No valid Debian CD-ROM
d-i cdrom-checker/wrongcd error
#
# Choices:
tzsetup-udeb time/zone select US/Eastern
unknown time/zone select US/Eastern
# Error while running ''
d-i hw-detect/modprobe_error error
# city
# Choices: Almaty, Qyzylorda, Aqtobe, Atyrau, Oral
tzsetup-udeb tzsetup/country/KZ select Asia/Almaty
# Continue without a network mirror?
apt-mirror-setup apt-setup/no_mirror boolean false
# Failed to create a file system
partman-basicfilesystems partman-basicfilesystems/create_failed error
# locale
d-i localechooser/help/locale note
# for internal use
bootstrap-base base-installer/kernel/linux/initramfs-tools/driver-policy string most
#
# Choices: American Samoa, Australia, Cook Islands, Fiji, French Polynesia, Guam, Kiribati, Marshall Islands, Micronesia\, Federated States of, Nauru, New Caledonia, New Zealand, Niue, Norfolk Island, Northern Mariana Islands, Palau, Papua New Guinea, Pitcairn, Samoa, Solomon Islands, Tokelau, Tonga, Tuvalu, United States Minor Outlying Islands, Vanuatu, Wallis and Futuna
d-i localechooser/countrylist/Oceania select
# Proceed to install crypto components despite insufficient memory?
partman-crypto partman-crypto/install_udebs_low_mem boolean
# Malformed IP address
netcfg netcfg/bad_ipaddress error
# Failed to open checksum file
d-i cdrom-checker/md5file_failed error
# Name of the volume group for the new system:
partman-auto-lvm partman-auto-lvm/new_vg_name_exists string
# Not enough RAID partitions available
partman-md partman-md/notenoughparts error
# Debian archive mirror:
# Choices:
choose-mirror-bin mirror/http/mirror select deb.debian.org
# No partitions to encrypt
partman-crypto partman-crypto/nothing_to_setup note
# No volume group found
partman-lvm partman-lvm/lvcreate_nofreevg error
# No volume group name entered
partman-lvm partman-lvm/vgcreate_nonamegiven error
# Encryption configuration failure
partman-crypto partman-crypto/crypto_root_needs_boot error
# for internal use only
d-i debconf/showold boolean false
# Use contrib software?
apt-mirror-setup apt-setup/contrib boolean false
unknown apt-setup/contrib boolean false
# Failed to partition the selected disk
partman-auto partman-auto/no_recipe error
#
# Choices: Spain, France, other
d-i localechooser/shortlist/eu select
# Volume group name already in use
partman-auto-lvm partman-auto-lvm/vg_exists error
# Continue with the installation?
partman-base partman/confirm_nochanges boolean false
# Setting firmware variables for automatic boot
nobootloader nobootloader/confirmation_powerpc_chrp_pegasos note
# for internal use
d-i keyboard-configuration/optionscode string
# No root file system
partman-target partman-target/no_root error
# Load CD-ROM drivers from removable media?
d-i cdrom-detect/load_media boolean true
# Key to function as AltGr:
# Choices: The default for the keyboard layout, No AltGr key, Right Alt (AltGr), Right Control, Right Logo key, Menu key, Left Alt, Left Logo key, Keypad Enter key, Both Logo keys, Both Alt keys
d-i keyboard-configuration/altgr select The default for the keyboard layout
# UNetbootin media detected
d-i cdrom-detect/unetbootin_detected note
# for internal use; can be preseeded
d-i debian-installer/country string US
# Debootstrap Error
bootstrap-base base-installer/debootstrap/error/couldntdl error
# Devices to add to the volume group:
# Choices:
partman-lvm partman-lvm/vgextend_parts multiselect
# The free space starts from and ends at .
partman-base partman/show_free_chs note
# RAID configuration failure
partman-md partman-md/commit_failed error
# Invalid size
partman-partitioning partman-partitioning/bad_new_partition_size error
# for internal use only
unknown passwd/user-default-groups string sudo
user-setup-udeb passwd/user-default-groups string sudo
# Set the clock using NTP?
clock-setup clock-setup/ntp boolean false
unknown clock-setup/ntp boolean false
# zone
# Choices: Newfoundland, Atlantic, Eastern, Central, East Saskatchewan, Saskatchewan, Mountain, Pacific
tzsetup-udeb tzsetup/country/CA select Canada/Eastern
# for internal use; can be preseeded
d-i preseed/late_command string
# for internal use only
partman-auto-raid partman-auto-raid/raidnum string
# Write the changes to disks?
partman-base partman/confirm_nooverwrite boolean true
unknown partman/confirm_nooverwrite boolean true
# WEP key for wireless device :
netcfg netcfg/wireless_wep string
unknown netcfg/wireless_wep string
# for internal use; can be preseeded
partman-auto partman-auto/method string lvm
unknown partman-auto/method string lvm
# for internal use; can be preseeded
network-preseed auto-install/enable boolean false
#
# Choices: Belgium, Germany, Italy, Liechtenstein, Luxembourg, Switzerland, Austria, other
d-i localechooser/shortlist/de select
# Write the changes to the storage devices and configure RAID?
d-i partman-md/confirm_nooverwrite boolean false
# Enable source repositories in APT?
apt-setup-udeb apt-setup/enable-source-repositories boolean true
# Invalid ESSID
netcfg netcfg/invalid_essid error
# for internal use; can be preseeded
d-i debian-installer/theme string
# Remove existing software RAID partitions?
partman-md partman-md/device_remove_md boolean true
unknown partman-md/device_remove_md boolean true
# Volume group name:
partman-lvm partman-lvm/vgcreate_name string
# for internal use; can be preseeded
bootstrap-base base-installer/excludes string
# for internal use; can be preseeded
grub-installer grub-installer/grub2_instead_of_grub_legacy boolean true
# Name of the volume group for the new system:
partman-auto-lvm partman-auto-lvm/new_vg_name string debian
unknown partman-auto-lvm/new_vg_name string debian
# Keyfile creation failure
partman-crypto partman-crypto/keyfile-problem error
# Scan another CD or DVD?
apt-cdrom-setup apt-setup/cdrom/set-next boolean false
unknown apt-setup/cdrom/set-next boolean false
# Failed to mount /target/proc
grub-installer grub-installer/mounterr error
# Resize operation failure
partman-partitioning partman-partitioning/new_size_commit_failed error
# No software RAID devices available
partman-md partman-md/delete_no_md error
# Logical Volume Manager not available
partman-lvm partman-lvm/nolvm error
# for internal use; can be preseeded
d-i rescue/enable boolean false
# Encryption configuration failure
partman-crypto partman-crypto/crypto_boot_not_possible error
# Debian archive mirror directory:
d-i mirror/https/directory string /debian/
# for internal use; can be preseeded
netcfg netcfg/dhcp_timeout string 25
# Checksum error
d-i preseed/checksum_error error
# Base system installation error
bootstrap-base base-installer/debootstrap/error-abnormal error
# Entering low memory mode
d-i lowmem/low note
# for internal use; can be preseeded
d-i preseed/boot_command string
# Point-to-point address:
netcfg netcfg/get_pointopoint string
# Debian archive mirror country:
# Choices: enter information manually, Argentina, Armenia, Australia, Austria, Belarus, Belgium, Brazil, Bulgaria, Canada, Chile, China, Costa Rica, Croatia, Czechia, Denmark, El Salvador, Estonia, Finland, France, French Polynesia, Georgia, Germany, Greece, Hong Kong, Hungary, India, Indonesia, Iran\, Islamic Republic of, Israel, Italy, Japan, Kazakhstan, Kenya, Korea\, Republic of, Latvia, Lithuania, Luxembourg, Macedonia\, Republic of, Mexico, Moldova, Netherlands, New Caledonia, New Zealand, Norway, Philippines, Poland, Portugal, Romania, Russian Federation, Réunion, Serbia, Singapore, Slovakia, Slovenia, South Africa, Spain, Sweden, Switzerland, Taiwan, Thailand, Turkey, Ukraine, United Kingdom, United States, Uruguay, Vietnam
choose-mirror-bin mirror/http/countries select manual
# for internal use; can be preseeded
d-i preseed/file/checksum string
# Installer components to load:
# Choices: choose-mirror: Choose mirror to install from (menu item), crypto-dm-modules-4.19.0-6-amd64-di: devicemapper crypto module, driver-injection-disk-detect: Detect OEM driver injection disks, espeakup-udeb: Configure the speech synthesizer voice, event-modules-4.19.0-6-amd64-di: Event support, fdisk-udeb: Manually partition a hard drive (fdisk), fuse-modules-4.19.0-6-amd64-di: FUSE modules, load-media: Load installer components from removable media, lowmem: free memory for lowmem install, mbr-udeb: Master Boot Record for IBM-PC compatible computers, multipath-modules-4.19.0-6-amd64-di: Multipath support, nbd-modules-4.19.0-6-amd64-di: Network Block Device modules, network-console: Continue installation remotely using SSH, openssh-client-udeb: secure shell client for the Debian installer, parted-udeb: Manually partition a hard drive (parted), ppp-modules-4.19.0-6-amd64-di: PPP drivers, ppp-udeb: Point-to-Point Protocol (PPP) - package for Debian Installer, reiserfsprogs-udeb: User-level tools for ReiserFS filesystems, rescue-mode: mount requested partition and start a rescue shell, scsi-nic-modules-4.19.0-6-amd64-di: SCSI drivers for converged NICs, sound-modules-4.19.0-6-amd64-di: sound support, squashfs-modules-4.19.0-6-amd64-di: squashfs modules, udf-modules-4.19.0-6-amd64-di: UDF modules
d-i anna/choose_modules multiselect
# iSCSI target portal address:
partman-iscsi partman-iscsi/login/address string
# Protocol for file downloads:
# Choices: http, https, ftp
choose-mirror-bin mirror/protocol select http
# btrfs file system not supported for /boot
partman-btrfs partman-btrfs/btrfs_boot error
# for internal use; can be preseeded
apt-setup-udeb apt-setup/security_host string security.debian.org
unknown apt-setup/security_host string security.debian.org
# for internal use; can be preseeded
d-i debian-installer/framebuffer boolean true
# LVM configuration action:
# Choices:
partman-lvm partman-lvm/mainmenu select
# Volume group to extend:
# Choices:
partman-lvm partman-lvm/vgextend_names select
# Unable to install the selected kernel
bootstrap-base base-installer/kernel/failed-install error
# for internal use; can be preseeded
d-i preseed/interactive boolean false
# for internal use only
clock-setup clock-setup/system-time-changed boolean false
# Error
netcfg netcfg/error error
# Base system installation error
bootstrap-base base-installer/debootstrap/error-exitcode error
# Really delete the volume group?
partman-lvm partman-lvm/vgdelete_confirm boolean true
# Error while creating volume group
partman-lvm partman-lvm/vgcreate_error error
# Gateway:
netcfg netcfg/get_gateway string 192.168.10.1
unknown netcfg/get_gateway string 192.168.10.1
#
# Choices: Algeria, Angola, Benin, Botswana, Burkina Faso, Burundi, Cabo Verde, Cameroon, Central African Republic, Chad, Congo, Congo\, The Democratic Republic of the, Côte d'Ivoire, Djibouti, Egypt, Equatorial Guinea, Eritrea, Ethiopia, Gabon, Gambia, Ghana, Guinea, Guinea-Bissau, Kenya, Lesotho, Liberia, Libya, Malawi, Mali, Mauritania, Morocco, Mozambique, Namibia, Niger, Nigeria, Rwanda, Sao Tome and Principe, Senegal, Sierra Leone, Somalia, South Africa, South Sudan, Sudan, Swaziland, Tanzania, Togo, Tunisia, Uganda, Western Sahara, Zambia, Zimbabwe
d-i localechooser/countrylist/Africa select
# Ignore questions with a priority less than:
# Choices: critical, high, medium, low
d-i debconf/priority select high
# Check the integrity of another CD-ROM?
d-i cdrom-checker/nextcd boolean false
# iSCSI targets on :
# Choices:
partman-iscsi partman-iscsi/login/targets multiselect
# Identical mount points for two file systems
partman-target partman-target/same_mountpoint error
# Dummy template for preseeding unavailable questions
unknown popularity-contest/participate string false
# No physical volumes selected
partman-lvm partman-lvm/vgreduce_nosel error
# Drivers to include in the initrd:
# Choices: generic: include all available drivers, targeted: only include drivers needed for this system
bootstrap-base base-installer/initramfs-tools/driver-policy select most
# for internal use; can be preseeded
partman-base partman/early_command string
# zone
# Choices: Santiago, Easter Island
tzsetup-udeb tzsetup/country/CL select America/Santiago
# for internal use only
d-i cdrom/codename string buster
# Write the changes to disks and configure LVM?
d-i partman-lvm/confirm_nooverwrite boolean true
unknown partman-lvm/confirm_nooverwrite boolean true
# for internal use; can be preseeded (deprecated)
netcfg netcfg/disable_dhcp boolean true
unknown netcfg/disable_dhcp boolean true
# for internal use; can be preseeded
base-installer base-installer/install-recommends boolean true
# Check CD-ROM integrity?
d-i cdrom-checker/start boolean false
# Remove existing logical volume data?
partman-lvm partman-lvm/device_remove_lvm boolean true
unknown partman-lvm/device_remove_lvm boolean true
# Return to the menu to set the bootable flag?
partman-ext3 partman-ext3/boot_not_bootable boolean
# Device for boot loader installation:
# Choices: Enter device manually,
grub-installer grub-installer/choose_bootdev select
# Required programs missing
partman-crypto partman-crypto/tools_missing note
# Proceed with installation to unclean target?
base-installer base-installer/use_unclean_target boolean true
# for internal use only
d-i anna/retriever string cdrom-retriever
# zone
# Choices: Asia/Nicosia (Cyprus (most areas)), Asia/Famagusta (Northern Cyprus)
tzsetup-udeb tzsetup/country/CY select
# No devices selected
partman-crypto partman-crypto/create/nosel error
# LVM configuration failure
partman-lvm partman-lvm/commit_failed error
# Logical Volume Management
partman-lvm partman-lvm/help note
# for internal use; can be preseeded
d-i preseed/run/checksum string
# for internal use; can be preseeded
d-i debian-installer/allow_unauthenticated_ssl boolean false
# Devices to encrypt:
# Choices:
partman-crypto partman-crypto/create/partitions multiselect
# Choose the next step in the install process:
# Choices: Choose language, Access software for a blind person using a braille display, Configure the keyboard, Detect and mount CD-ROM, Load debconf preconfiguration file, Load installer components from CD, Detect network hardware, Configure the network, Set up users and passwords, Configure the clock, Detect disks, Partition disks, Install the base system, Configure the package manager, Select and install software, Install the GRUB boot loader on a hard disk, Continue without boot loader, Finish the installation, Change debconf priority, Check the CD-ROM(s) integrity, Save debug logs, Execute a shell, Eject a CD from the drive, Abort the installation
d-i debian-installer/main-menu select Finish the installation
# Go back to the menu and correct this problem?
partman-ext3 partman-ext3/boot_not_ext2_or_ext3 boolean
# Spare devices for the RAID array:
# Choices:
partman-md partman-md/raidsparedevs multiselect
# Error while setting up RAID
partman-auto-raid partman-auto-raid/error error
# Directory in which to save debug logs:
d-i save-logs/directory string /mnt
# Debootstrap Error
bootstrap-base base-installer/debootstrap/error/missingrelentry error
# DHCP hostname:
netcfg netcfg/dhcp_hostname string
# Debian archive mirror directory:
choose-mirror-bin mirror/http/directory string /debian
unknown mirror/http/directory string /debian
# Wireless ESSID for :
netcfg netcfg/wireless_essid_again string
# Required encryption options missing
partman-crypto partman-crypto/options_missing error
# for internal use; can be preseeded
bootstrap-base base-installer/debootstrap_script string
# How to use this partition:
# Choices:
partman-target partman-target/choose_method select
#
# Choices: Cyprus, Turkey, other
d-i localechooser/shortlist/tr select
# Ethernet card not found
ethdetect ethdetect/cannot_find error
#
# Choices: British Indian Ocean Territory, Christmas Island, Cocos (Keeling) Islands, Comoros, French Southern Territories, Heard Island and McDonald Islands, Madagascar, Maldives, Mauritius, Mayotte, Réunion, Seychelles
d-i localechooser/countrylist/Indian_Ocean select
#
# Choices: Argentina, Bolivia, Brazil, Chile, Colombia, Ecuador, French Guiana, Guyana, Paraguay, Peru, Suriname, Uruguay, Venezuela
d-i localechooser/countrylist/South_America select
# The encryption key for is now being created.
partman-crypto partman-crypto/entropy entropy
# No usable physical volumes found
partman-lvm partman-lvm/nopartitions error
# for internal use only
d-i cdrom-detect/hybrid boolean false
# Go back to the menu and correct this problem?
partman-basicfilesystems partman-basicfilesystems/boot_not_first_partition boolean
#
# Choices: Antarctica
d-i localechooser/countrylist/Antarctica select
# FTP proxy information (blank for none):
choose-mirror-bin mirror/ftp/proxy string
# zone
# Choices: Port Moresby, Bougainville
tzsetup-udeb tzsetup/country/PG select
# for internal use; can be preseeded
bootstrap-base base-installer/kernel/linux/extra-packages-2.6 string
# for internal use only
# Choices: stable, testing, unstable
d-i cdrom/suite select stable
# for internal use only
bootstrap-base base-installer/kernel/linux/initrd-2.6 boolean true
# Encryption for this partition:
# Choices:
partman-crypto partman-crypto/cipher select
# Invalid network link detection waiting time
netcfg netcfg/bad_link_wait_timeout error
# Error while deleting volume group
partman-lvm partman-lvm/vgdelete_error error
# Write a new empty partition table?
partman-partitioning partman-partitioning/confirm_write_new_label boolean true
unknown partman-partitioning/confirm_write_new_label boolean true
# Keyboard layout:
# Choices:
d-i keyboard-configuration/variant select
#
# Choices: Anguilla, Antigua and Barbuda, Aruba, Bahamas, Barbados, Bermuda, Bonaire\, Sint Eustatius and Saba, Cayman Islands, Cuba, Dominica, Dominican Republic, Grenada, Guadeloupe, Haiti, Jamaica, Martinique, Montserrat, Puerto Rico, Saint Barthélemy, Saint Kitts and Nevis, Saint Lucia, Saint Martin (French part), Saint Vincent and the Grenadines, Sint Maarten (Dutch part), Trinidad and Tobago, Turks and Caicos Islands, Virgin Islands\, British, Virgin Islands\, U.S.
d-i localechooser/countrylist/Caribbean select
# Volume group:
# Choices:
partman-lvm partman-lvm/lvcreate_vgnames select
# Failed to download crypto components
partman-crypto partman-crypto/install_udebs_failure error
#
# Choices: Andorra, Spain, France, Italy, other
d-i localechooser/shortlist/ca select
# for internal use; can be preseeded
d-i preseed/include string
# Separate file system not allowed here
partman-target partman-target/must_be_on_root error
# Do you want to return to the partitioning menu?
partman-basicfilesystems partman-basicfilesystems/no_swap boolean true
# Volume group name overlaps with device name
partman-lvm partman-lvm/vgcreate_devnameused error
# Failed to retrieve the preconfiguration file
d-i preseed/retrieve_error error
# for internal use only
d-i debian-installer/language string en
# Keep current partition layout and configure encrypted volumes?
partman-crypto partman-crypto/confirm_nochanges boolean false
# Network configuration method:
# Choices: Retry network autoconfiguration, Retry network autoconfiguration with a DHCP hostname, Configure network manually, , Do not configure the network at this time
netcfg netcfg/dhcp_options select Configure network manually
unknown netcfg/dhcp_options select Configure network manually
# No network interfaces detected
netcfg netcfg/no_interfaces error
#
# Choices: Curaçao
d-i localechooser/countrylist/other select
# Do you want to return to the partitioning menu?
partman-basicfilesystems partman-basicfilesystems/no_mount_point boolean false
unknown partman-basicfilesystems/no_mount_point boolean false
# Empty passphrase
partman-crypto partman-crypto/passphrase-empty error
# state
# Choices: Acre, Alagoas, Amazonas, Amapá, Bahia, Ceará, Distrito Federal, Espírito Santo, Fernando de Noronha, Goiás, Maranhão, Minas Gerais, Mato Grosso do Sul, Mato Grosso, Pará, Paraíba, Pernambuco, Piauí, Paraná, Rio de Janeiro, Rio Grande do Norte, Rondônia, Roraima, Rio Grande do Sul, Santa Catarina, Sergipe, São Paulo, Tocantins
tzsetup-udeb tzsetup/country/BR select America/Sao_Paulo
# zone
# Choices: Tarawa (Gilbert Islands), Enderbury (Phoenix Islands), Kiritimati (Line Islands)
tzsetup-udeb tzsetup/country/KI select Pacific/Tarawa
# HTTP proxy information (blank for none):
d-i mirror/https/proxy string
# Hostname:
netcfg netcfg/get_hostname string debian10-preseeds
unknown netcfg/get_hostname string debian10-preseeds
# for internal use; can be preseeded
bootstrap-base base-installer/includes string
# for internal use; can be preseeded
partman-base partman/default_filesystem string ext4
# Keyboard model:
# Choices:
d-i keyboard-configuration/model select
# Go back to the menu and correct errors?
partman-basicfilesystems partman-basicfilesystems/swap_check_failed boolean
#
# Choices: Bangladesh, India, other
d-i localechooser/shortlist/bn select
# for internal use; can be preseeded
d-i debian-installer/exit/poweroff boolean false
# location
# Choices: Tahiti (Society Islands), Marquesas Islands, Gambier Islands
tzsetup-udeb tzsetup/country/PF select Pacific/Tahiti
# EFI partition too small
partman-efi partman-efi/too_small_efi error
# for internal use; can be preseeded
bootstrap-base base-installer/kernel/linux/extra-packages string
# Driver needed for your disk drive:
# Choices: continue with no disk drive, , none of the above
disk-detect disk-detect/module_select select continue with no disk drive
# Terminal plugin not available
d-i debian-installer/terminal-plugin-unavailable error
# Encryption configuration actions
# Choices: Create encrypted volumes, Finish
partman-crypto partman-crypto/mainmenu select
# Use unrecommended JFS /boot file system?
partman-jfs partman-jfs/jfs_boot boolean false
# Initialisation of encrypted volume failed
partman-crypto partman-crypto/init_failed error
# Go back to the menu and correct this problem?
partman-basicfilesystems partman-basicfilesystems/boot_not_ext2 boolean
# for internal use; can be preseeded
netcfg netcfg/dhcpv6_timeout string 15
# for internal use only
d-i debconf/language string en
# Partition name:
partman-partitioning partman-partitioning/set_name string
# Cannot access repository
apt-setup-udeb apt-setup/service-failed error
# Software RAID device to be deleted:
# Choices:
partman-md partman-md/deletemenu select
# Debootstrap Error
bootstrap-base base-installer/debootstrap/error/nogetrelsig error
# Install the GRUB boot loader to the Serial ATA RAID disk?
grub-installer grub-installer/sataraid boolean true
# for internal use; can be preseeded
# Choices: Network Manager, ifupdown (/etc/network/interfaces), No network configuration
netcfg netcfg/target_network_config select ifupdown
# Use weak passphrase?
partman-crypto partman-crypto/weak_passphrase boolean false
# The size entered is too large
partman-partitioning partman-partitioning/big_new_size error
# is too small
partman-auto-lvm partman-auto-lvm/small_guided_size error
# for internal use; can be preseeded
ethdetect ethdetect/prompt_missing_firmware boolean true
# Layout of the RAID10 array:
partman-md partman-md/raid10layout string n2
# Scan another CD or DVD?
apt-cdrom-setup apt-setup/cdrom/set-failed boolean false
unknown apt-setup/cdrom/set-failed boolean false
# for internal use only
choose-mirror-bin mirror/codename string buster
# Error while deleting the logical volume
partman-lvm partman-lvm/lvdelete_error error
# No volume group found
partman-lvm partman-lvm/vgdelete_novg error
# Debootstrap warning
bootstrap-base base-installer/debootstrap/fallback-warning error
# The size entered is invalid
partman-partitioning partman-partitioning/bad_new_size error
# for internal use; can be preseeded
pkgsel pkgsel/updatedb boolean true
# Partitioning method:
# Choices:
partman-auto partman-auto/automatically_partition select
# Erasing data on failed
partman-crypto partman-crypto/plain_erase_failed error
# How should the debug logs be saved or transferred?
# Choices: floppy, web, mounted file system
d-i save-logs/menu select
# for internal use; can be preseeded
d-i debian-installer/allow_unauthenticated boolean false
# No partitionable media
disk-detect disk-detect/cannot_find error
# Identical labels for two file systems
partman-target partman-target/same_label error
# Error while initializing physical volume
partman-lvm partman-lvm/pvcreate_error error
# Full name for the new user:
unknown passwd/user-fullname string ansible
user-setup-udeb passwd/user-fullname string ansible
# Type of encryption key hash for this partition:
# Choices:
partman-crypto partman-crypto/keyhash select
# Unable to install
bootstrap-base base-installer/kernel/failed-package-install error
# Netmask:
netcfg netcfg/get_netmask string 255.255.255.0
unknown netcfg/get_netmask string 255.255.255.0
# Volume group name already in use
partman-lvm partman-lvm/vgcreate_nameused error
# Failed to partition the selected disk
partman-auto partman-auto/autopartitioning_failed error
# Interactive shell
d-i di-utils-shell/do-shell note
#
d-i debian-installer/shell-plugin terminal
# Kernel to install:
# Choices: linux-image-4.19.0-6-amd64,linux-image-amd64, none
bootstrap-base base-installer/kernel/image select linux-image-amd64
# Failed to partition the selected disk
partman-auto-lvm partman-auto-lvm/unusable_recipe error
# for internal use; can be preseeded
pkgsel pkgsel/include string
# Continue without installing a kernel?
bootstrap-base base-installer/kernel/skip-install boolean false
# Unexpected error while creating volume group
partman-auto-lvm partman-auto-lvm/vg_create_error error
# Continue the installation in the selected language?
d-i localechooser/translation/warn-severe boolean false
# New partition size: