|
how to ignore @base packages in kickstart for fedora-10
hello friends,
I am making a kickstart dvd for fedora10 with having minimal (only core pkgs) installation.
When I am trying to install packages, its automaticall includes @base pkgs also.
Since I have only 1 GB harddrive, no of packges should be minimal, so how to ignore the base packages in kickstart installation ??
The below is my ks.cfg file
===========================================================================
##########################################################################
##
## FILE: ks.cfg (fedora auto-installer)
## VERSION: DEVEL
## PLATFORM: x86, AMD64, or Intel EM64T
##
##########################################################################
#version=DEVEL
install
cdrom
#--- Language and input support
lang en_US.UTF-8
#langsupport --default=en_US.UTF-8 en_US.UTF-8
keyboard us
#--- X-Windows (use "skipx" directive to skip X-Windows configuration)
ski px
#--- Network configuration
network --device eth0 --bootproto static --ip 192.168.1.254 --netmask 255.255.255.0 --gateway 192.168.1.1 --nameserver 192.168.1.1 --hostname googllies
#--- Authentication and security
rootpw agadam34
firewall --service=ssh
selinux --enforcing
authconfig --enableshadow --passalgo=sha512
#--- timezone
timezone --utc Asia/Kolkata
#--- Boot loader
bootloader --location=mbr --driveorder=sda --append="rhgb quiet"
#--- clear mbr
zerombr
clearpart --all --initlabel
#--- Make this Partition scheme
part /boot --fstype ext3 --size=50
part pv.4 --size=200 --grow
volgroup VolGroup00 --pesize=1024 pv.4
logvol swap --fstype swap --name=LogVol01 --vgname=VolGroup00 --size=205
logvol / --fstype ext3 --name=LogVol00 --vgname=VolGroup00 --size=735
#--- Reboot machine
reboot
#--- Select packages
%packages
@core
%end
================================= ==========================================
|