使用LVM的Ubuntu Kickstart安装等待输入

前端之家收集整理的这篇文章主要介绍了使用LVM的Ubuntu Kickstart安装等待输入前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个PXE Boot Setup,用于通过Kickstart安装CentOS 5和Ubuntu 10.04.我使用LVM并安装CentOS而没有任何用户交互工作,但Ubuntu总是要求在分区期间“确认将更改写入磁盘并配置LVM”.如果我不使用LVM,Ubuntu将不会要求任何确认,只是对磁盘进行分区.

我处理分区的kickstart文件的部分如下所示:

#System bootloader configuration
bootloader --location=mbr 
#Clear the Master Boot Record
zerombr yes
#Partition clearing information
clearpart --all --initlabel
#Disk partitioning information
part /boot --fstype ext2 --size 200 --asprimary
part swap  --size 1024
part pv.01 --size 1 --grow
volgroup rootvg pv.01
logvol / --fstype ext4 --vgname=rootvg --size=1 --grow --name=rootvol

如何在不在屏幕上选择“是”的情况下告诉Ubuntu始终接受设置?有什么像确认所有选项?

解决方法

好的,我找到了问题的解决方案,你必须使用preseed选项来确认LVM问题.只需将以下行添加到Kickstart文件即可.
preseed partman-lvm/confirm_nooverwrite boolean true
原文链接:https://www.f2er.com/linux/399181.html

猜你在找的Linux相关文章