当我在 CentOS 7.0 上使用 kickstat 文件时,安装程序似乎忽略了列表中的一些“不安装”软件包。
cdrom
text
auth --enableshadow --passalgo=sha512
keyboard --vckeymap=pt-latin1
lang en_US.UTF-8 --addsupport=pt_PT.UTF-8
network --bootproto=dhcp --device=eth0 --ipv6=auto --activate --hostname=centos7
rootpw xxxxxx
skipx
timezone Europe/Lisbon --isUtc --nontp
firstboot --disabled
services --enabled sshd
firewall --enabled --ssh --http
clearpart --all --initlabel
bootloader --location=mbr --boot-drive=sda
ignoredisk --only-use=sda
autopart --type=lvm
reboot --eject
%packages --nobase --excludedocs
@core
-acl
-authconfig
-dracut*
-kexec-tools
-linux-firmware
-newt*
-plymouth-scripts
%end
我在安装时没有看到明显的错误,但当我启动系统时,有些软件包存在(有些不存在)。我可以使用以下方法删除它们:
yum remove acl authconfig dracut* linux-firmware newt* plymouth-scripts
所以它们不是系统保护的包。有没有办法避免安装它们,或者我需要在安装后删除它们?