web-dev-qa-db-ja.com

Ubuntu18.04の無人インストールが「ようこそ/言語の選択」で止まる

http://releases.ubuntu.com/18.04/ からダウンロードしたpreseedファイルを使用してUbuntu18.04をインストールしようとしています。

しかし、残念ながら、次のような「ようこそ/言語選択」画面で止まりました:

enter image description here

Preseedファイルを見つける変更された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 ---

およびpreseedファイル:

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;

私はこれを読みます リンク 歓迎にこだわる場合、以下のようにpreseedに追加する必要があるかもしれません:

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

しかし、まだ歓迎されています。

どんな提案でも感謝します、ありがとう。

4
lm2484909

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ファイルにあります。

1
mohclips