Skip to content

Instantly share code, notes, and snippets.

@zcshiner
Created September 1, 2014 17:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zcshiner/d835df2ae25f3042e3f4 to your computer and use it in GitHub Desktop.
Save zcshiner/d835df2ae25f3042e3f4 to your computer and use it in GitHub Desktop.
Ubuntu 14.04 - NetworkConsole Install Preseed
### Ubuntu 14.04 NetworkConsole preseed.cfg
# Based off Debian Jessie's example preseed: http://d-i.debian.org/manual/example-preseed.txt
# Accessed: 1 Sept 2014
#### Contents of the preconfiguration file (for jessie)
### Localization
# Preseeding only locale sets language, country and locale.
d-i debian-installer/locale string en_US
# Keyboard selection.
d-i keyboard-configuration/xkb-keymap select us
# d-i keyboard-configuration/toggle select No toggling
### Network configuration
# netcfg will choose an interface that has link if possible. This makes it
# skip displaying a list if there is more than one interface.
d-i netcfg/choose_interface select auto
# Any hostname and domain names assigned from dhcp take precedence over
# values set here. However, setting the values still prevents the questions
# from being shown, even if values come from dhcp.
d-i netcfg/get_hostname string unassigned-hostname
d-i netcfg/get_domain string unassigned-domain
# Disable that annoying WEP key dialog.
d-i netcfg/wireless_wep string
# The wacky dhcp hostname that some ISPs use as a password of sorts.
#d-i netcfg/dhcp_hostname string radish
### Network console
# Use the following settings if you wish to make use of the network-console
# component for remote installation over SSH. This only makes sense if you
# intend to perform the remainder of the installation manually.
d-i anna/choose_modules string network-console
#d-i network-console/authorized_keys_url string http://10.0.0.1/openssh-key
d-i network-console/password password r00tme
d-i network-console/password-again password r00tme
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment