Linux常用命令
firewall-cmd:设置和管理firewall规则 firewall-cmd --state:查看firewall状态 firewall-cmd --zone=public --add-port=80/tcp --permanent:开放80端口,永久生效 firewall-cmd --zone=public --remove-port=8080/tcp --permanent:关闭8080端口,永久生效 firewall-cmd --reload:重启防火墙,立即生效 缓存清理 sync echo 1 > /proc/sys/vm/drop_caches cpu ps aux|head -1;ps aux|grep -v PID|sort -rn -k +3|head mem ps aux|head -1;ps aux|grep -v PID|sort -rn -k +4|head ps aux --sort=-%mem # 列出所有进程并按内存使用率降序排序 ps aux --sort=-rss # 列出所有进程并按常驻集大小(RSS)降序排序 删除五天前的数据 find /path/to/files -type f -mtime +5 -exec ls {} \; find /path/to/files -type f -mtime +5 -exec rm {} \;
标签:sort,ps,cmd,--,常用命令,firewall,Linux,aux From: https://www.cnblogs.com/JIKes/p/18192647