@chy282
2018-02-06T14:52:54.000000Z
字数 778
阅读 1159
Linux
© 版权声明:本文为博主原创文章,转载请注明出处
本文内容仅为个人理解,不保证完全正确
yum -y install wget httpd-tools vim
# 查看iptables的所有规则链
iptables -L
# 清除iptables的所有规则链
iptables -F
# 查看nat表的规则链
iptables -t nat -L
# 清空nat表的所有规则链
iptables -t nat -F
# 查看SELinux状态
getenforce
setenforce 0 # 设置SELinux成为Permissive模式:宽容模式,会有警告但是不是限制domain/type的存取
setenforce 1 # 设置SELinux成为Enforcing模式:强制模式,正常限制domain/type的存取
yum -y install gcc gcc-c++ autoconf pcre pcre-devel make automake
grep "ERROR" a.txt # 显示a.txt中存在ERROR字符串的内容
grep -o "ERROR" a.txt | wc -l # 统计a.txt中ERROR字符串出现的次数
grep -v 200 a.txt # 显示a.txt中没有出现200的内容
grep -v 200 a.txt | wc -l # 统计a.txt中没有出现200内容的个数
cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime # 修改当前时区为上海时间
ntpdate -u cn.pool.ntp.org # 时间同步