> Source: [sk60316](https://support.checkpoint.com/results/sk/sk60316)

# sk60316 - How to search for large files on SecurePlatform / Gaia OS

| Property | Value |
|----------|-------|
| Solution ID | sk60316 |
| Date Created | 2011-01-16 |
| Last Modified | 2023-06-05 |
| Technical Level | General |
| OS | Linux, Gaia |

## Solution

Run the following command in Expert mode:

#find ***\[PARTITION / PATH \]*** -type f -size +10000 -exec ls -lh {} \\; 2\> /dev/null \| awk '{ print $NF ": " $5 }' \| sort -nk 2,2

Examples (for different partitions):

# find /var/opt -type f -size +10000 -exec ls -lh {} \\; 2\> /dev/null \| awk '{ print $NF ": " $5 }' \| sort -nk 2,2

# find /opt -type f -size +10000 -exec ls -lh {} \\; 2\> /dev/null \| awk '{ print $NF ": " $5 }' \| sort -nk 2,2

# find / -type f -size +10000 -exec ls -lh {} \\; 2\> /dev/null \| awk '{ print $NF ": " $5 }' \| sort -nk 2,2

# find /var -type f -size +10000 -exec ls -lh {} \\; 2\> /dev/null \| awk '{ print $NF ": " $5 }' \| sort -nk 2,2

---

# Agent Instructions

This content is from the Check Point Support Center (https://support.checkpoint.com), the official knowledge base for Check Point cybersecurity products.

## Navigating This Knowledge Base

- **Complete index**: [llms.txt](https://support.checkpoint.com/llms.txt)
- **All SK articles**: [SecureKnowledge Sitemap](https://support.checkpoint.com/sitemaps/secureknowledge-sitemap-index.xml)
- **SK article URL pattern**: `https://support.checkpoint.com/results/sk/{skId}`
- **Markdown responses**: AI bot User-Agents automatically receive `text/markdown` content
