我的笔记
笔记
Linux
常用命令
常用命令
# 查看磁盘占用
du -sh * | sort -h
# 查看端口占用
ss -tulpn
# 找大文件
find / -type f -size +100M 2>/dev/null