CentOS-5 Prep
From Mike Neir's Wiki
[edit]
Post Install
CentOS 5 installs a ton of services, even on a minimal install, that are set to start on boot. This is the list of junk that I disable.
for service in acpid anacron apmd atd auditd avahi-daemon bluetooth cmastor cpuspeed cups gpm hidd hpsmhd ip6tables iptables isdn mcstrans mdmonitor messagebus netfs nfslock pcscd portmap readahead_early readahead_later rpcgssd smartd yum-updatesd; do /etc/init.d/$service stop; chkconfig $service off; done
