使用Ubuntu10.10备用预置文件,我无法跳过“键盘的起源”问题。知道为什么吗?我的预置文件如下参考链接这里所示
#### Contents of the preconfiguration file (for squeeze)
### Localization
# Preseeding only locale sets language, country and locale.
d-i debian-installer/locale string en_US
# The values can also be preseeded individually for greater flexibility.
#d-i debian-installer/language string en
#d-i debian-installer/country string NL
#d-i debian-installer/locale string en_GB.UTF-8
# Optionally specify additional locales to be generated.
#d-i localechooser/supported-locales en_US.UTF-8, nl_NL.UTF-8
# Keyboard selection.
# Disable automatic (interactive) keymap detection.
d-i console-setup/ask_detect boolean false
d-i console-setup/modelcode string skip-config
d-i console-setup/layoutcode string us
# To select a variant of the selected layout (if you leave this out, the
# basic form of the layout will be used):
#d-i console-setup/variantcode string dvorak 发布于 2011-03-24 02:23:30
只是在这里加上一个评论,希望它能帮上一点忙.
通过将设置放在pxe启动的默认文件中,我成功地解决了这个问题,如下所示: vi pxelinux.cfg/ default:
默认安装
标签安装
menu label ^Install
menu default
kernel ubuntu-installer/i386/linux
append ramdisk_size=14984 locale=en_US console-setup/ask_detect=false console-setup/layoutcode=us netcfg/choose_interface=eth1 netcfg/get_hostname=testserver url=http://10.255.0.1/ubuntu-preseeds/preseed.cfg vga=normal initrd=ubuntu-installer/i386/initrd.gz -- quiet我希望这能帮上一点忙,不好意思弄得一团糟:)
干杯,卡尔·克洛本伯格。
发布于 2013-02-20 03:22:13
AFAIK你需要所有的
d-i keyboard-configuration/variant select English (US)
d-i console-keymaps-at/keymap select us
d-i keyboard-configuration/xkb-keymap select us也有可能
console-setup/ask_detect=false console-setup/layoutcode=us keyboard-configuration/xkb-keymap=us在您的附加行的txt.cfg (或任何孤立的配置)
https://serverfault.com/questions/249465
复制相似问题