텍스트 모드에서 Kickstart 파일을 사용하여 CentOS 7 VM의 테스트 설치를 수행하고 있지만 잠시 후 설치가 이 화면에서 중단됩니다(기본 터미널 VT1).
이것은 VT4의 내용입니다( Ctrl++를 통해 표시됨).AltF4
사용된 킥스타트 파일은 다음과 같습니다.
#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"
그래픽 설치는 잘 작동하지만 텍스트 설치를 테스트한 다음 %사전 및 %사후 설치 부분을 사용자 정의하고 싶습니다. 이 문제를 해결하려면 어떤 조치를 취할 수 있습니까?