Ubuntu18.04无人值守安装卡在“欢迎/语言选择”

Ubuntu18.04无人值守安装卡在“欢迎/语言选择”

我正在尝试使用从以下位置下载的预置文件安装 Ubuntu18.04http://releases.ubuntu.com/18.04/

但不幸的是,它停留在如下所示的“欢迎/语言选择”屏幕:

在此处输入图片描述

以下是isolinux.cfg定位预置文件的已更改文件:

default live
label live
  menu label ^Try Ubuntu without installing
  kernel /casper/vmlinuz
  append  file=/cdrom/unattended.seed auto=true priority=critical debian-installer/locale=en_US keyboard-configuration/layoutcode=us languagechooser/language-name=English countrychooser/shortlist=US localechooser/supported-locales=en_US.UTF-8 boot=casper initrd=/casper/initrd quiet splash noprompt noshell ---

以及预置文件:

d-i preseed/early_command string tail -f /var/log/syslog > /dev/hvc0 &
d-i    debian-installer/locale         string en_US
d-i    console-keymaps-at/keymap    select us
d-i keyboard-configuration/xkb-keymap select us
d-i console-setup/ask_detect boolean false
d-i console-setup/layoutcode string us
d-i console-setup/modelcode string SKIP


d-i netcfg/choose_interface select eth0


d-i mirror/file/directory string /cdrom
d-i    mirror/http/proxy        string 
d-i    debian-installer/allow_unauthenticated    string true
d-i apt-setup/backports boolean false
d-i    time/zone string        string UTC
d-i    partman-auto/method        string regular

d-i    partman-auto/choose_recipe select atomic
d-i partman/confirm_nooverwrite boolean true


d-i    partman/confirm_write_new_label    boolean true
d-i    partman/choose_partition         select Finish partitioning and write 
changes to disk
d-i    partman/confirm            boolean true
d-i    passwd/make-user        boolean false
d-i passwd/root-login boolean true
d-i passwd/root-password-crypted    password 


popularity-contest    popularity-contest/participate    boolean    false
tasksel    tasksel/first            multiselect standard
d-i pkgsel/include string openssh-server psmisc patch build-essential flex 
bc python net-tools
d-i    grub-installer/only_debian    boolean true
d-i    finish-install/reboot_in_progress    note
d-i    debian-installer/exit/poweroff    boolean true
d-i preseed/late_command string sed -ri 's/^#?PermitRootLogin prohibit- 
password/PermitRootLogin yes/g' /target/etc/ssh/sshd_config; 
/target/etc/init.d/ssh restart; sed -i 's/quiet splash 
$vt_handoff/console=hvc0 console=tty0/g' /target/boot/grub/grub.cfg;

我读过这个 关联 如果停留在欢迎状态,可能需要添加预置,如下所示:

d-i grub-installer/bootdev  string /dev/sda

但仍然停留在欢迎状态。

任何建议都将受到赞赏,谢谢。

答案1

您正在使用 Live DVD,但自动化功能不起作用(2018 年 11 月 27 日),您需要使用非 Live DVD。 http://cdimage.ubuntu.com/releases/18.04/release/

在看到这个之前我也遇到过同样的问题https://askubuntu.com/a/1037088/497218

对于那些不确定的人:Live DVD 的内核位于 /casper/vmlinuz,而非 Live DVD 的内核位于 /install/vmlinuz - 您可以在 txt.cfg 文件中看到它。

相关内容