tmp
This commit is contained in:
commit
4042a3de8e
1 changed files with 49 additions and 0 deletions
49
preseed.cfg
Normal file
49
preseed.cfg
Normal file
|
|
@ -0,0 +1,49 @@
|
||||||
|
### Localization
|
||||||
|
d-i debian-installer/locale string en_US.UTF-8
|
||||||
|
d-i keyboard-configuration/xkb-keymap select us
|
||||||
|
d-i time/zone string UTC
|
||||||
|
|
||||||
|
### Network
|
||||||
|
d-i netcfg/choose_interface select auto
|
||||||
|
d-i netcfg/get_hostname string kiosk
|
||||||
|
d-i netcfg/get_domain string local
|
||||||
|
|
||||||
|
### Mirror
|
||||||
|
d-i mirror/country string manual
|
||||||
|
d-i mirror/http/hostname string deb.debian.org
|
||||||
|
d-i mirror/http/directory string /debian
|
||||||
|
d-i mirror/http/proxy string
|
||||||
|
|
||||||
|
### Users
|
||||||
|
d-i passwd/root-login boolean false
|
||||||
|
d-i passwd/user-fullname string Kiosk User
|
||||||
|
d-i passwd/username string kiosk
|
||||||
|
d-i passwd/user-password password kiosk
|
||||||
|
d-i passwd/user-password-again password kiosk
|
||||||
|
d-i user-setup/allow-password-weak boolean true
|
||||||
|
|
||||||
|
### Clock
|
||||||
|
d-i clock-setup/utc boolean true
|
||||||
|
d-i clock-setup/ntp boolean true
|
||||||
|
|
||||||
|
### Partitioning (⚠ wipes disk)
|
||||||
|
d-i partman-auto/method string regular
|
||||||
|
d-i partman-auto/choose_recipe select atomic
|
||||||
|
d-i partman-auto/confirm boolean true
|
||||||
|
d-i partman-auto/confirm_nooverwrite boolean true
|
||||||
|
|
||||||
|
### Package selection
|
||||||
|
tasksel tasksel/first multiselect standard, ssh-server
|
||||||
|
d-i pkgsel/include string \
|
||||||
|
xorg \
|
||||||
|
openbox \
|
||||||
|
chromium \
|
||||||
|
sudo \
|
||||||
|
curl
|
||||||
|
|
||||||
|
### Bootloader
|
||||||
|
d-i grub-installer/only_debian boolean true
|
||||||
|
d-i grub-installer/bootdev string default
|
||||||
|
|
||||||
|
### Finishing up
|
||||||
|
d-i finish-install/reboot_in_progress note
|
||||||
Loading…
Add table
Add a link
Reference in a new issue