Linux常用命令

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 {} \;

 

posted @ 2024-05-15 08:39  不会游泳的鱼丶  阅读(7)  评论(0编辑  收藏  举报