web-dev-qa-db-ja.com

Ubuntu 20.04 LTSがPXEおよびNFSを使用して起動しない

Ubuntu Liveをテストできるように、私は過去10年間同じ設定を使用しています

Debianを使用するPXEサーバー

/srv/tftp/pxelinux.cfg/default
  LABEL Ubuntu 18.04 Live
  kernel ubuntu18/casper/vmlinuz
  append boot=casper netboot=nfs nfsroot=10.11.97.5:/srv/tftp/ubuntu18 initrd=ubuntu18/casper/initrd

Isoライブデスクトップをダウンロードし、ローカルにマウントします。

/etc/fstab:
/srv/tftp/ubuntu-18.04.4-desktop-AMD64.iso /srv/tftp/ubuntu18     iso9660 loop,ro 0 0

Nfsを使用してエクスポートされたISO:

/etc/exports
/srv/tftp/ubuntu18      *(async,no_root_squash,no_subtree_check,ro)

しかし、どういうわけかubuntu-20.04-desktop-AMD64.iso(2020-04-23)はnfs共有に接続しません。接続:ネットワークに到達できません

NFS over TCP not available from 10.11.97.5
done.
Unable to find a live file system on the network 

インターフェイスが表示されないようです。 18.04と20.04のリリースを比較すると、20.04ではIPは要求されません。 IP-Config:行がありません。

3
cheche

19.10以降、新しいパラメータip = dhcpが必要であることがわかりました https://bugs.launchpad.net/ubuntu/+source/casper/+bug/1848018

3
cheche