Kickstart 文本安装挂起

Kickstart 文本安装挂起

我正在文本模式下使用 Kickstart 文件对 CentOS 7 VM 进行测试安装,但一段时间后安装挂起在此屏幕上(这是主终端 VT1):

在此输入图像描述

这是 VT4 的内容(通过++Ctrl看到):AltF4

在此输入图像描述

使用的 Kickstart 文件是这样的:

#version=RHEL7
# System authorization information
auth --enableshadow --passalgo=sha512

# Use CDROM installation media
cdrom
# Use graphical install
install
text
# Run the Setup Agent on first boot
firstboot --enable
ignoredisk --only-use=vda
# Keyboard layouts
keyboard --vckeymap=ch --xlayouts='ch'
# System language
lang en_US.UTF-8

# Network information
network  --bootproto=static --device=eth0 --gateway=192.168.77.1 --ip=192.168.77.222 --nameserver=8.8.8.8 --netmask=255.255.255.0 --ipv6=auto --activate
network  --hostname=localhost.localdomain
# Root password
rootpw --iscrypted $6$CmjyBHZ.4piG.00J$JESV6h1LUaMxB2n2sJEkjd97GobnYIdAYPJmQtlKQMpiaPPKMpAD.4z3RPb9KxUvIg8SlFVC2KhG..2.6ivwI/
# System timezone
timezone America/Santiago --isUtc --nontp
# X Window System configuration information
xconfig  --startxonboot
# System bootloader configuration
bootloader --append=" crashkernel=auto" --location=mbr --boot-drive=vda
autopart --type=lvm
# Partition clearing information
clearpart --none --initlabel

%packages
@base
@core

%end

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

%end

VM 是通过以下命令创建的:

virt-install --virt-type=kvm --name=centos7test6 --disk path=/var/lib/libvirt/images/centos7test6.img,size=6 --initrd-inject=/root/kickstart-tests/test.ks --ram=1024 --vcpus=1 --os-variant=rhel7 --accelerate --graphics vnc -v -l http://mirror.centos.org/centos/7/os/x86_64/ --network bridge:virbr0 --extra-args="console=tty0 console=ttyS0,115200 ks=file:/test.ks"

图形安装工作正常,但我想测试文本安装,然后自定义 %pre- 和 %post-install 部分。可以采取什么措施来解决这个问题?

相关内容