To check and manage large files in CentOS, you can use several command-line utilities to identify large files and manage disk usage effectively. Here’s a step-by-step guide to finding large files:
Using du
Command
The du
(Disk Usage) command allows you to display the size of files and directories. To find large files, you can use it in combination with sort
and head
to show the biggest files.
Example: Finding Largest Files in a Directory
du -ah /path/to/directory | sort -rh | head -n 10
-a
: Show sizes for both files and directories.-h
: Human-readable format (e.g., MB, GB).sort -rh
: Sort by size, largest first.head -n 10
: Display the top 10 largest files.
Example: Finding Largest Files Across the Filesystem
du -ah / | sort -rh | head -n 10
This will search the entire filesystem for the largest files.
Using find
Command
The find
command can help you locate files above a specific size threshold.
Example: Finding Files Larger than 1GB
find / -type f -size +1G -exec ls -lh {} \; | awk '{ print $9 ": " $5 }'
/
: Search the entire filesystem (or specify a directory path).-type f
: Only find files (not directories).-size +1G
: Files larger than 1GB.ls -lh
: List files in a human-readable format.awk '{ print $9 ": " $5 }'
: Display the file name and size.
Using ncdu
(NCurses Disk Usage)
ncdu
is a more user-friendly tool for interactive disk usage analysis. It provides a visual interface to navigate through directories and see their sizes.
Install ncdu
sudo yum install ncdu
Run ncdu
ncdu /
It will scan your filesystem and allow you to navigate and identify large files or directories.
Using ls
Command
You can also use ls
to list files by size in a specific directory.
Example: Listing Files by Size
ls -lhS /path/to/directory
-l
: Use long listing format.-h
: Human-readable format.-S
: Sort by file size.
This is useful for viewing the largest files in a specific directory.
Using df
to Check Disk Space Usage
If you’re concerned about overall disk usage, you can check which partitions are consuming the most space with the df
(Disk Free) command.
Example: Displaying Disk Usage
df -h
This will show the disk usage of all mounted filesystems in a human-readable format. These commands should help you efficiently locate and manage large files on your CentOS system.