如何使用OEMDRV卷自动化CentOS7最低启动安装?

时间:2019-07-11 09:54:07

标签: automation installation centos centos7 boot

我正在尝试自动在VirtualBox中最小化CentOS7的安装过程。 Kickstart文件是解决方案。我发现将ks.cfg文件放入OEMDRV.vhdm磁盘并将其安装到VM内存是最简单的方法,使VM可以访问配置文件。 Anaconda读取ks.cfg文件,因为它指出了拼写错误,但是一旦正确写入该文件,VM就会运行错误,如果ks.cfg文件为空,也会发生同样的情况:

The I/O cache encountered an error while updating data in medium "ahci- 
0-1" (rc=VERR_ACCESS_DENIED). Make sure there is enough free space on the 
disk and that the disk is working properly. Operation can be resumed 
afterwards.

主机是Windows 10,下面是我的ks.cfg文件。该文件是从已经存在的centOS7最小VM中提取的。

#version=DEVEL
# System authorization information
auth --enableshadow --passalgo=sha512
# Use CDROM installation media
cdrom
# Use cmdline/text/graphical install
graphical
# Run the Setup Agent on first boot
firstboot --enable
ignoredisk --only-use=sda
# Keyboard layouts
keyboard --vckeymap=us --xlayouts='us'
# System language
lang en_US.UTF-8

# Network information
network  --bootproto=dhcp --device=enp0s3 --ipv6=auto --activate
network  --hostname=localhost.localdomain

# Root password #working on --isctrypted rootpw
rootpw --iscrypted $6$6eqrvzKwp2ST4PMi$VUqUy8G/AsbaZK9XbtqlQcSIZjZ7QQk5yFqe5h/91YwM3GI3PjxEASc062EFPgGjvsmMxcLuKvx8d69KLplYJ1
# System services
services --disabled="chronyd"
# System timezone
timezone Europe/Warsaw --isUtc --nontp
# User
user --groups=wheel --name=secutest --password=$6$Ct923BcyZG.13TR2$jEUcu5tlvncoejaWa9eof.5GL1oU3wLVe0zEWLDrpKY6oXJhGeV4CRvoiYfFeC1IpkPeaXc1z912E3HdvOS/t/ --iscrypted --gecos="secutest"
# System bootloader configuration
bootloader --append=" crashkernel=auto" --location=mbr --boot-drive=sda

%packages
@^minimal
@core
kexec-tools

%end

%addon com_redhat_kdump --enable --reserve-mb='auto'

%end

%anaconda
pwpolicy root --minlen=6 --minquality=1 --notstrict --nochanges --notempty
pwpolicy user --minlen=6 --minquality=1 --notstrict --nochanges --emptyok
pwpolicy luks --minlen=6 --minquality=1 --notstrict --nochanges --notempty
%end

reboot

1 个答案:

答案 0 :(得分:0)

解决方案是使用OEMDRV.iso,ISO磁盘类型。下一个OEMDRV磁盘必须安装到VM的SATA控制器上。

此命令将从文件夹中创建带有标签为“ OEMDRV”的卷的OEMDV.iso文件。

pip install pyarrow