Liunx 优化

一、关闭SElinux、配置防火墙
1、vi /etc/selinux/config
#SELINUX=enforcing #注释掉
#SELINUXTYPE=targeted #注释掉
SELINUX=disabled #增加
:wq!  #保存退出
setenforce 0 #使配置立即生效

 

二、修改最大文件打开数
ulimit -a
vim /etc/security/limits.conf
*             soft nofile       1000000
*             hard nofile       1000000
:wq
ulimit -a

 

三、 关闭不必要的服务

邮件服务:
service postfix stop
chkconfig postfix --level 2345 off

通用unix打印服务:
service cups stop
chkconfig cups --level 2345 off

调节cpu速度用来省电:
service cpuspeed stop
chkconfig cpuspeed --level 2345 off

蓝牙无线通讯:
service bluetooth stop
chkconfig bluetooth --level 2345 off

系统安装后初始设定,第一次启动系统后就没用了:
service firstboot stop
chkconfig firstboot --level 2345 off

关闭nfs服务及客户端:
service netfs stop
chkconfig netfs --level 2345 off
service nfslock stop
chkconfig nfslock --level 2345 off

如果要恢复某一个服务,可以执行下面操作:
service acpid start && chkconfig acpid on
也可以使用setup工具来设置

 

posted @ 2016-09-28 13:02  游子善心  阅读(1)  评论(0编辑  收藏  举报  来源