我有一个正在运行PXE的dhcp服务器和一个通过PXE安装ubuntu的客户机。
我设法让安装程序正常工作。它在一个启动文件的帮助下完成安装过程,但是突然在“安装系统”时停止,并说它遇到了一个错误。我不知道是什么原因造成的,也不知道如何解决。有什么帮助吗?
错误是这个通用的错误,它不能让我继续下去:
[!!] Install the system
Installation step failed
an installation step failed.
you can try to run the failing item again from the menu,
for skip it and choose something else.
the failing step is: Install the system我的启动文件如下所示:
#Generated by Kickstart Configurator
#platform=x86
#System language
lang en_US
#Language modules to install
langsupport en_US
#System keyboard
keyboard dk
#System mouse
mouse
#System timezone
timezone Europe/Copenhagen
#Root password
rootpw SecretPass
#Initial user
user local --fullname "Local Admin" --password SecredPass
#Reboot after installation
reboot
#Use text mode install
text
#Install OS instead of upgrade
install
#Use Web installation
url --url http://172.16.0.6/ubuntu14.10
#System bootloader configuration
bootloader --location=mbr
#Clear the Master Boot Record
zerombr yes
#Partition clearing information
clearpart --all --initlabel
#Disk partitioning information
part swap --recommended --asprimary --ondisk sda
part /boot --fstype ext4 --size 128 --ondisk sda
part / --fstype ext3 --size 1 --grow --ondisk sda
#System authorization infomation
auth --useshadow --enablemd5 --enableldap --enableldapauth --ldapserver ldap://hellerup.mosek.intranet --ldapbasedn dc=hellerup,dc=mosek,dc=intranet
#Firewall configuration
firewall --disabled
#Do not configure the X Window System
skipx要安装PXE服务器,我使用了本指南,以https://help.ubuntu.com/community/PXEInstallServer字母表示
发布于 2015-08-26 09:22:05
看起来这是一个错误发生在所有较新版本的ubuntu。更新的Ubuntu版本在安装过程中使用了一些名为squashfs的内容,但是PXE服务器并没有通知.squashfs文件是什么,所以安装失败了。
要解决这个问题,只需将以下内容添加到预置文件中
d-i live-installer/net-image string http://path/to/installation/filesystem.squashfshttps://serverfault.com/questions/715162
复制相似问题