web-dev-qa-db-ja.com

ubuntu 18.04ライブサーバーのカスタムインストールの作成エラー

公式のubuntu-18.04.1-live-server-AMD64.isoをベースイメージとして使用し、後で独自のpreseedファイルのセットを使用してubuntu 18.04のカスタムISOを作成し、後でpackerで浮浪者ボックスを作成しようとしています。

/ rootファイルシステムが見つからない(最後に添付のスクリーンショットを参照)というエラーが表示され続け、フォーラムで見つけた彼のソリューションはLiveCDからfsckを使用してこの問題を回避します。しかし、作業イメージをパックしようとしているので、それらの修正は私には適用されません。

Ubuntu-18.04.1-live-server-AMD64.iso内にあるシーダーファイルを使用しようとしましたが、運が悪かったため、次のサイトを参照として使用してseeder.cfgファイルを作成しました。

  1. https://help.ubuntu.com/lts/installation-guide/AMD64/apbs04.html#preseed-l10n
  2. https://help.ubuntu.com/lts/installation-guide/example-preseed.txt
  3. https://d-i.debian.org/manual/example-preseed.txt

これが私のpreseedファイルです。

d-i debian-installer/locale string en_US.UTF-8
d-i keyboard-configuration/xkb-keymap select us
d-i passwd/root-password-crypted password __PASSWORD__
d-i passwd/user-fullname string vagrant
d-i passwd/username string vagrant
d-i passwd/user-password-crypted password __PASSWORD__
d-i user-setup/allow-password-weak boolean true
d-i time/zone string US/Central
d-i clock-setup/ntp boolean true
d-i partman-auto/method string regular
d-i partman-auto/choose_recipe select atomic
d-i partman-partitioning/confirm_write_new_label boolean true
d-i partman/choose_partition select finish
d-i partman/confirm boolean true
d-i partman/confirm_nooverwrite boolean true
d-i pkgsel/include string curl openssh-server Sudo git vim
d-i pkgsel/language-packs multiselect
d-i grub-installer/only_debian boolean true
d-i finish-install/reboot_in_progress note
d-i preseed/late_command string                                               \
    echo 'Defaults:vagrant !requiretty' > /target/etc/sudoers.d/vagrant;      \
    echo 'vagrant ALL=(ALL) NOPASSWD: ALL' >> /target/etc/sudoers.d/vagrant;  \
    chmod 440 /target/etc/sudoers.d/vagrant;                                  \
    ln -sf /dev/null /target/etc/systemd/network/99-default.link;             \
    in-target update-initramfs -u

そして、ファイルは/isolinux/adtxt.cfgから次のように使用されます:

label bionic
  menu label ^Custom Install
  kernel /casper/vmlinuz
  append  initrd=/casper/initrd net.ifnames=0 auto-install/enable=true debconf/priority=critical file=/cdrom/preseed/ubuntu-18.04/preseed.cfg ---

ヘルプやガイダンスは大歓迎です。

エラーメッセージ

1
rcavaz

preseedファイルメカニズムはDebianインストーラーでうまく機能しますが、Ubuntu 18.04 LTS Liveイメージは Subiquity と呼ばれる新しいインストーラーを使用し、代わりにanswers.ymlファイルメカニズムを使用して回答を提供しますインストーラーの質問。

ただし、 CD Image ディレクトリからダウンロードした場合でも、preseedファイルを使用する古いDebianインストーラーで18.04 LTSイメージを見つけることができます。

1
davidiamyou