学习啦>学习电脑>操作系统>系统优化教程>

CentOS系统环境精简优化详解

时间: 志艺942 分享

  CentOS(Community Enterprise Operating System,中文意思是:社区企业操作系统)是Linux发行版之一,它是来自于Red Hat Enterprise Linux依照开放源代码规定释出的源代码所编译而成。接下来是小编为大家收集的CentOS系统环境精简优化详解,希望能帮到大家。

  CentOS系统环境精简优化详解

  第一步、删除不必要的自带软件包

学习啦在线学习网   yum remove Deployment_Guide-en-US finger cups-libs cups ypbind

学习啦在线学习网   yum remove bluez-libs desktop-file-utils ppp rp-pppoe wireless-tools irda-utils

学习啦在线学习网   yum remove sendmail* samba* talk-server finger-server bind* xinetd

  yum remove nfs-utils nfs-utils-lib rdate fetchmail eject ksh mkbootdisk mtools

  yum remove syslinux tcsh startup-notification talk apmd rmt dump setserial portmap yp-tools

  yum groupremove "Mail Server" "Games and Entertainment" "X Window System" "X Software Development"

学习啦在线学习网   yum groupremove "Development Libraries" "Dialup Networking Support"

  yum groupremove "Games and Entertainment" "Sound and Video" "Graphics" "Editors"

学习啦在线学习网   yum groupremove "Text-based Internet" "GNOME Desktop Environment" "GNOME Software Development"

学习啦在线学习网   第二步、升级centos系统

  yum update #更新系统

  yum clean all #清理全部缓存文件

  第三步、禁用seLinux

  sestatus #先执行看seLinux状态,如果不是disabled,就需要执行下面步骤,否则不要执行

  vi /etc/selinux/config

  SELINUX=disabled #禁用SeLinux

学习啦在线学习网   SELINUX=enforcing #使用SeLinux

  第四步、禁止IPV6(执行后需要reboot重启)

学习啦在线学习网   vi /etc/modprobe.conf #打开文件,把下面两行加到最后

学习啦在线学习网   alias net-pf-10 off

学习啦在线学习网   alias ipv6 off

  第五步、初始化防火墙

  touch /etc/sysconfig/iptables

学习啦在线学习网   iptables -F

学习啦在线学习网   iptables -X

  iptables -Z

学习啦在线学习网   service iptables save

  service iptables restart

  第六步、禁止无用服务

  #! /bin/bash

  service acpid off

  service atd stop

  service auditd stop

  service avahi-daemon stop

学习啦在线学习网   service avahi-dnsconfd stop

  service bluetooth stop

  service conman stop

学习啦在线学习网   service cpuspeed stop

  service cups stop

学习啦在线学习网   service dnsmasq stop

  service dund stop

  service firstboot stop

学习啦在线学习网   service hidd stop

学习啦在线学习网   service httpd stop

学习啦在线学习网   service ibmasm stop

  service ip6tables stop

  service irda stop

学习啦在线学习网   service kdump stop

  service lm_sensors stop

学习啦在线学习网   service mcstrans stop

  service messagebus stop

学习啦在线学习网   service microcode_ctl stop

  service netconsole stop

学习啦在线学习网   service netfs stop

  service netplugd stop

学习啦在线学习网   service nfs stop

学习啦在线学习网   service nfslock stop

学习啦在线学习网   service nscd stop

  service ntpd stop

学习啦在线学习网   service oddjobd stop

  service pand stop

  service pcscd stop

  service portmap stop

  service psacct stop

  service rdisc stop

  service restorecond stop

  service rpcgssd stop

  service rpcidmapd stop

学习啦在线学习网   service rpcsvcgssd stop

学习啦在线学习网   service saslauthd stop

学习啦在线学习网   service sendmail stop

  service setroubleshoot stop

  service smb stop

学习啦在线学习网   service vncserver stop

  service winbind stop

  service wpa_supplicant stop

  service xfs stop

  service ypbind stop

  service yum-updatesd stop

  chkconfig acpid off

  chkconfig atd off

学习啦在线学习网   chkconfig auditd off

  chkconfig avahi-daemon off

学习啦在线学习网   chkconfig avahi-dnsconfd off

学习啦在线学习网   chkconfig bluetooth off

  chkconfig conman off

学习啦在线学习网   chkconfig cpuspeed off

学习啦在线学习网   chkconfig cups off

  chkconfig dnsmasq off

学习啦在线学习网   chkconfig dund off

学习啦在线学习网   chkconfig firstboot off

学习啦在线学习网   chkconfig hidd off

  chkconfig httpd off

  chkconfig ibmasm off

  chkconfig ip6tables off

学习啦在线学习网   chkconfig irda off

  chkconfig kdump off

  chkconfig lm_sensors off

  chkconfig mcstrans off

  chkconfig messagebus off

学习啦在线学习网   chkconfig microcode_ctl off

学习啦在线学习网   chkconfig netconsole off

  chkconfig netfs off

  chkconfig netplugd off

  chkconfig nfs off

  chkconfig nfslock off

学习啦在线学习网   chkconfig nscd off

学习啦在线学习网   chkconfig ntpd off

学习啦在线学习网   chkconfig oddjobd off

学习啦在线学习网   chkconfig pand off

学习啦在线学习网   chkconfig pcscd off

学习啦在线学习网   chkconfig portmap off

  chkconfig psacct off

  chkconfig rdisc off

  chkconfig restorecond off

学习啦在线学习网   chkconfig rpcgssd off

  chkconfig rpcidmapd off

  chkconfig rpcsvcgssd off

学习啦在线学习网   chkconfig saslauthd off

  chkconfig sendmail off

  chkconfig setroubleshoot off

  chkconfig smb off

学习啦在线学习网   chkconfig vncserver off

  chkconfig winbind off

  chkconfig wpa_supplicant off

学习啦在线学习网   chkconfig xfs off

学习啦在线学习网   chkconfig ypbind off

学习啦在线学习网   chkconfig yum-updatesd off

学习啦在线学习网   这样通过上述6步骤,就可以完成对centos精简和优化。


学习啦在线学习网 看了“CentOS系统环境精简优化详解”还想看:

1.Centos6更新系统的教程

2.详解CentOS6.4系统NFS安装配置

3.CentOS系统怎样安装DNS服务器

4.哪个linux系统最好

2845608