다음은 내 킥스타트 구성 파일입니다.
#version=RHEL7
# System authorization information
auth --enableshadow --passalgo=sha512
# Use CDROM installation media
cdrom
# Run the Setup Agent on first boot
firstboot --enable
ignoredisk --only-use=vda
# Keyboard layouts
keyboard --vckeymap=us --xlayouts='us'
# System language
lang en_US.UTF-8
# Root password
rootpw qwerty
# Install Repo
repo --name="CentOS Repo" --baseurl=http://ftp.jaist.ac.jp/pub/Linux/CentOS/7/os/x86_64/
# System timezone
timezone America/New_York --isUtc
# System bootloader configuration
bootloader --location=mbr --boot-drive=vda
autopart --type=lvm
# Partition clearing information
clearpart --none --initlabel
%packages
@core
%end
%post
mkdir -p /etc/sample
mkdir danis
echo "Hello World" >> danis.txt
touch /var/danis.txt
%end
다음 명령을 사용하여 설치용 ISO를 만들었습니다.
sudo livecd-creator --verbose --config=ks.cfg --fslabel=DanisCentOS --cache=/var/cache/live
ISO 생성은 성공적으로 완료되었는데, 설치 후 OS에 로그인 하려고 하면 설정한 비밀번호와 일치하지 않는 비밀번호를 입력하라는 메시지가 뜹니다. 또한 어떤 비밀번호로도 로그인할 수 없습니다. 도와주세요.