mirror of
https://github.com/kforney/pentest-distro-builder.git
synced 2024-11-01 00:49:13 -06:00
108 lines
3.9 KiB
INI
108 lines
3.9 KiB
INI
# This file replaces preseed.cfg embedded in the initrd by
|
|
# debian-installer. It should be kept in sync except with the
|
|
# mirror/{codename,suite} dropped so that the image installs
|
|
# what's available on the CD instead of hardcoding a specific
|
|
# release.
|
|
|
|
d-i debian-installer/locale string en_US.UTF-8
|
|
d-i console-keymaps-at/keymap select us
|
|
d-i keyboard-configuration/xkb-keymap select us
|
|
|
|
# Default repository information (don't include codename data, d-i figures it
|
|
# out from what's available in the ISO)
|
|
d-i mirror/country string enter information manually
|
|
d-i mirror/http/hostname string http.kali.org
|
|
d-i mirror/http/directory string /kali
|
|
d-i mirror/http/proxy string
|
|
d-i mirror/suite string kali-rolling
|
|
d-i mirror/codename string kali-rolling
|
|
|
|
#Set time zone
|
|
d-i clock-setup/utc boolean true
|
|
d-i time/zone string US/Mountain
|
|
|
|
# Disable security, volatile and backports
|
|
d-i apt-setup/services-select multiselect
|
|
|
|
# Enable contrib and non-free
|
|
d-i apt-setup/non-free boolean true
|
|
d-i apt-setup/contrib boolean true
|
|
|
|
# Disable CDROM entries after install
|
|
d-i apt-setup/disable-cdrom-entries boolean true
|
|
|
|
# Disable source repositories too
|
|
d-i apt-setup/enable-source-repositories boolean false
|
|
|
|
# Partitioning
|
|
d-i partman-auto/method string regular
|
|
d-i partman-lvm/device_remove_lvm boolean true
|
|
d-i partman-md/device_remove_md boolean true
|
|
d-i partman-lvm/confirm boolean true
|
|
d-i partman-auto/choose_recipe select atomic
|
|
d-i partman-auto/disk string /dev/sda
|
|
d-i partman/confirm_write_new_label boolean true
|
|
d-i partman/choose_partition select finish
|
|
d-i partman/confirm boolean true
|
|
d-i partman/confirm_nooverwrite boolean true
|
|
d-i partman-partitioning/confirm_write_new_label boolean true
|
|
|
|
# Upgrade installed packages
|
|
d-i pkgsel/upgrade select full-upgrade
|
|
|
|
# Change default hostname
|
|
d-i netcfg/get_hostname string kali
|
|
d-i netcfg/get_domain string unassigned-domain
|
|
d-i netcfg/choose_interface select auto
|
|
#d-i netcfg/choose_interface select eth0
|
|
d-i netcfg/dhcp_timeout string 60
|
|
|
|
d-i hw-detect/load_firmware boolean true
|
|
|
|
# Do not create a normal user account
|
|
#d-i passwd/make-user boolean false
|
|
#d-i passwd/root-password password toor
|
|
#d-i passwd/root-password-again password toor
|
|
|
|
#Create user account and disable root
|
|
d-i passwd/root-login boolean false
|
|
d-i passwd/make-user boolean true
|
|
d-i passwd/user-fullname string Kali User
|
|
d-i passwd/username string kali
|
|
d-i passwd/user-password password kali
|
|
d-i passwd/user-password-again password kali
|
|
|
|
d-i apt-setup/use_mirror boolean true
|
|
d-i grub-installer/only_debian boolean true
|
|
d-i grub-installer/with_other_os boolean false
|
|
d-i grub-installer/bootdev string /dev/sda
|
|
d-i finish-install/reboot_in_progress note
|
|
|
|
# Enable eatmydata in kali-installer to boost speed installation
|
|
d-i preseed/early_command string anna-install eatmydata-udeb
|
|
|
|
# Disable popularity-contest
|
|
popularity-contest popularity-contest/participate boolean false
|
|
|
|
kismet kismet/install-setuid boolean false
|
|
kismet kismet/install-users string
|
|
|
|
sslh sslh/inetd_or_standalone select standalone
|
|
|
|
mysql-server-5.5 mysql-server/root_password_again password
|
|
mysql-server-5.5 mysql-server/root_password password
|
|
mysql-server-5.5 mysql-server/error_setting_password error
|
|
mysql-server-5.5 mysql-server-5.5/postrm_remove_databases boolean false
|
|
mysql-server-5.5 mysql-server-5.5/start_on_boot boolean true
|
|
mysql-server-5.5 mysql-server-5.5/nis_warning note
|
|
mysql-server-5.5 mysql-server-5.5/really_downgrade boolean false
|
|
mysql-server-5.5 mysql-server/password_mismatch error
|
|
mysql-server-5.5 mysql-server/no_upgrade_when_using_ndb error
|
|
|
|
console-setup console-setup/charmap47 select UTF-8
|
|
samba-common samba-common/dhcp boolean false
|
|
macchanger macchanger/automatically_run boolean false
|
|
kismet-capture-common kismet-capture-common/install-users string
|
|
kismet-capture-common kismet-capture-common/install-setuid boolean true
|
|
wireshark-common wireshark-common/install-setuid boolean false
|
|
sslh sslh/inetd_or_standalone select standalone
|