常用命令

# 查看磁盘占用
du -sh * | sort -h

# 查看端口占用
ss -tulpn

# 找大文件
find / -type f -size +100M 2>/dev/null