Horje
find large files linux Code Example
check th binggest file in linux
Just Enter this cmd on cli :::Note here /var is directory path ,you can change as per your requirnment 
sudo du -a /var | sort -n -r | head -n 10

1008372 /var
313236  /var/www
253964  /var/log
192544  /var/lib
152628  /var/spool
152508  /var/spool/squid
136524  /var/spool/squid/00
95736   /var/log/mrtg.log
74688   /var/log/squid
62544   /var/cache
find large files linux
sudo find /your/path -xdev -type f -size +1000M

or use the graphical analyser "filelight"
find large files in ubuntu
sudo du -a /your_dir/ | sort -n -r | head -n 20




Shell

Related
bash grep only return first match Code Example bash grep only return first match Code Example
failed to download repository information ubuntu Code Example failed to download repository information ubuntu Code Example
npm i --global expo-cli Code Example npm i --global expo-cli Code Example
linux pretty print json Code Example linux pretty print json Code Example
refresh cloudfront cache Code Example refresh cloudfront cache Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9