首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >Ubuntu netboot安装崩溃

Ubuntu netboot安装崩溃
EN

Server Fault用户
提问于 2015-08-19 06:50:39
回答 1查看 2.4K关注 0票数 1

我有一个正在运行PXE的dhcp服务器和一个通过PXE安装ubuntu的客户机。

我设法让安装程序正常工作。它在一个启动文件的帮助下完成安装过程,但是突然在“安装系统”时停止,并说它遇到了一个错误。我不知道是什么原因造成的,也不知道如何解决。有什么帮助吗?

错误是这个通用的错误,它不能让我继续下去:

代码语言:javascript
复制
                             [!!] 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

我的启动文件如下所示:

代码语言:javascript
复制
#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字母表示

EN

回答 1

Server Fault用户

回答已采纳

发布于 2015-08-26 09:22:05

看起来这是一个错误发生在所有较新版本的ubuntu。更新的Ubuntu版本在安装过程中使用了一些名为squashfs的内容,但是PXE服务器并没有通知.squashfs文件是什么,所以安装失败了。

要解决这个问题,只需将以下内容添加到预置文件中

代码语言:javascript
复制
d-i live-installer/net-image string http://path/to/installation/filesystem.squashfs
票数 2
EN
页面原文内容由Server Fault提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://serverfault.com/questions/715162

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档