带有 kickstart 文件的 RHEL ISO

带有 kickstart 文件的 RHEL ISO

我正在尝试从 redhat 编辑原始 RHEL 6.5 DVD (rhel-server-6.5-x86_64-dvd.iso),以便在其上添加 kickstart 文件。我们的目标是拥有一个可自动安装的 3.4Go iso。而且不是一张启动介质和一张 DVD。

redhat官方不支持这种技术,但我找到了一个过程:https://access.redhat.com/solutions/60959

我的 ks.cfg 看起来像:

install
cdrom
repo --name="Red Hat Enterprise Linux"  --baseurl=file:/mnt/source --cost=100
repo --name=HighAvailability --baseurl=file:///mnt/source/HighAvailability

安装程序启动时出现错误:未找到 Red Hat Enterprise Linux 磁盘。

我想这是因为安装程序没有查看自己的媒体。

有办法实现这一点吗? cdrom 是否有可选参数来硬链接设备?

答案1

您不需要在 ks.cfg 中设置存储库 URL,这是我当前在 rhel6 中使用的 kickstart 示例。

# interactive install from CD-ROM/DVD
interactive
install
cdrom

key --skip
lang en_US.UTF-8
# keyboard us

#
clearpart --all --initlabel
part /boot --fstype ext4 --size=100
part pv.100000 --size=1 --grow
volgroup vg00 --pesize=32768 pv.100000
logvol / --fstype ext4 --name=lvroot --vgname=vg00 --size=15360
logvol swap --fstype swap --name=lvswap --vgname=vg00 --size=2048
logvol /var --fstype ext4 --name=lvvar --vgname=vg00 --size 5120

timezone Europe/Paris
firewall --disabled
authconfig --useshadow --passalgo=sha512
selinux --enforcing

#skipx

# pre-set list of packages/groups to install 
%packages
@core
@server-policy
acpid
device-mapper-multipath
dmidecode
# ... and so on the list of packages/groups I pre-customize (and with - those I don't want)
vsftpd
wget
xfsprogs
-autoconf
-automake
-bc
# ... and so on
#-----------------------------------------------------------------------------
# postinstall, execution avec chroot dans le systeme installé.
%post --interpreter=/bin/sh --log=/root/post_install.log
echo -e "================================================================="
echo -e "       Starting kickStart post install script "

# do some extra stuff here , like mounting cd-rom copying add-ons specific for my product

相关内容