我已经为vm安装设置了一个预种子,但它仍然要求我首先定位。
我的vm安装是由bash脚本create_vm.sh触发的:
virt-install --name test \
--boot uefi \
--machine q35 \
--ram 16384 \
--disk path=/mnt/vms/images.img,format-qcow2 \
--vcpus 4 \
--os-type linux \
--network bridge:br0,model=virtio \
--graphics none \
--console pty,target_type=serial \
--location='http://au.archive.ubuntu.com/ubuntu/dists/xenial/main/installer-amd64/' \
--extra-args='ks=file:/preseed_test.cfg console=tty50,115200n8 serial' \
--initrd-inject=/tmp/preseed_test.cfg \
--virt-type kvm在我的预告里,我有:
### localisation
d-i debian-installer/language string en
d-i debian-installer/country string AU
d-i debian-installer/locale string en_GB.UTF-8但这些问题还会出现吗?为什么会这样呢?
不过,剩下的预售似乎起作用了。
发布于 2020-10-05 09:33:26
我刚才也有同样的问题。我相信locale设置了国家和语言-看起来你在设置使用country字段的国家与在locale字段中使用的国家不同
我没有同时测试设置所有三个选项,我只是移到只将locale设置为en_AU.UTF-8
https://serverfault.com/questions/908324
复制相似问题