How to Find the folder with most files / inodes?

To find the folder with most files or inodes run the following command:

find / -xdev -printf '%h\n' | sort | uniq -c | sort -k 1 -n

You can change / to any folder you wish.
 
  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

Installing CSF (ConfigServer Firewall) on a server

This guide will walk you through installing CSF on a VPS/Dedicated server. Preparing the...

How to SSH into your VPS?

After receiving your VPS login details, the first thing you'll want to do is log in to the VPS....

How to install Python with mod_wsgi on a CentOS VPS or Server with cPanel?

The world knows that cPanel/WHM is not too Django, or python friendly. However, this is a step...

How do I upload files large or small to my VPS server?

We don't do posting and going to data centre anymore to upload files.Also uploading via any of...

Basic Linux Commands

Below is a brief guide for basic usage of a Linux shell (command line). Once you've mastered...