web-dev-qa-db-ja.com

Debian 8.3.0-PXEインストーラーがCDROMを要求していますか?

簡単なものが足りないと思いますが、それが何なのかわかりません。

Cobblerを使用してDebian8.3.0をインポートしましたが、ネットワークに接続されているマシンにインストールしようとすると、インストーラーがCDROMを要求し、それを見つけられず、終了します。

ネットワークパス上でインストールファイルを見つけるように指示するために、preseedファイルまたはカーネルパラメータを微調整する必要があることを誰かが知っていますか?

2
Locane

Netboot initrdイメージのTFTPでカーネルにインストーラーを提供し、それをpreseedファイルにポイントする必要があります。

TFTPで、デフォルトメニューにdebian-installer/AMD64/boot-screens/adtxt.cfg

menu label ^Automated install
kernel debian-installer/AMD64/linux
append auto=true priority=critical vga=788 initrd=debian-installer/AMD64/initrd.gz \
--quiet auto=true layoutcode=pt language-name=English ask_detect=false \
 default_filesystem=ext3 url=http://10.10.x.x/preseed/preseed.cfg

キーボードのロケール、言語、ルートのデフォルトファイルシステム、およびpreseedファイルを提供するWebサーバーのIP/URLに合わせて変更してください。

Debianの公式ガイドへのリンクをここに残しておきます。

PXEBootInstall

Preseedファイルについて:

d-i mirror/country string US
d-i mirror/http/hostname string http.us.debian.org
d-i mirror/http/directory string /debian
d-i mirror/http/mirror string ftp.us.debian.org
d-i mirror/suite string jessie
1
Rui F Ribeiro