Linux调优

关闭SElinux

1.修改配置文件

sed - i "s#SELINUX=enforcing#SELINUX=disabled#g" /etc/selinux/config

查看状态

[root@bianzhuo ~]# getenforce

Enforcing

[root@bianzhuo ~]# setenforce

usage: setenforce [ Enforcing | Permissive | 1 | 0 ]

[root@bianzhuo ~]# setenforce 0

修改的配置文件得重启,为了不重启,setenforce

2. 运行级别

 

Linux调优_第1张图片

0-关机

1-单用户

2-没有NFS的多用户

3-命令行模式

4-没有使用的

5-桌面

6-重启

查看运行的级别

转换运行级别

 

 

关机

shutdown(halt、init 0)

shutdown -h now

-r reboot after shutdown

-h halt or power off after shutdown

重启

reboot (init )

shutdown -r now

临时关闭防火墙及查看状态

[root@bianzhuo ~]# /etc/init.d/iptables stop

iptables: Setting chains to policy ACCEPT: filter [ OK ]

iptables: Flushing firewall rules: [ OK ]

iptables: Unloading modules: [ OK ]

[root@bianzhuo ~]# /etc/init.d/iptables status

iptables: Firewall is not running.

 

永久关闭防火墙

字符集的调整

 

设置账号超时时间

Linux调优_第2张图片

查看历史纪录

调用某一条历史记录

清楚历史纪录

清除指定的历史纪录

linux特殊变量

export HISTSIZE=5 控制历史纪录显示数量

Linux调优_第3张图片

 

Linux调优_第4张图片

source /etc/profile

你可能感兴趣的:(Linux调优)