Skip to main content

File Usage in cPanel's Main Control Panel Query

Comments

5 comments

  • Infopro
    Everyday I see one file increase in it.

    What does this mean exactly?
    0
  • Mrinmoy
    If files usage is saying 'x' files today then tomorrow it will show 'x+1' automatically. And, so on.
    0
  • cPanelMichael
    Hello @Mrinmoy, File Usage refers to disk inodes, or the number of files uploaded to your account. If the number increases, it means more files were created. You can use cPanel >> File Manager or a FTP client to look at all of the files under the /home/username/ directory. A new email is one of the more common reasons to see an inode increase if you are not uploading new website files. Thank you.
    0
  • Mrinmoy
    Hello @Mrinmoy, File Usage refers to disk inodes, or the number of files uploaded to your account. If the number increases, it means more files were created. You can use cPanel >> File Manager or a FTP client to look at all of the files under the /home/username/ directory. A new email is one of the more common reasons to see an inode increase if you are not uploading new website files. Thank you.

    Okay so, as the site is a forum. People do register through emails. That might be the reason, right? Anyway thanks for the info.
    0
  • cPanelMichael
    Okay so, as the site is a forum. People do register through emails. That might be the reason, right? Anyway thanks for the info.

    You can open cPanel >> Terminal if it's enabled as a feature for your cPanel account. Once it's opened, run the following command to see the inode count for each subdirectory under /home/username/: echo "Inode usage for: $(pwd)" ; for d in `find -maxdepth 1 -type d |cut -d\/ -f2 |grep -xv . |sort`; do c=$(find $d |wc -l) ; printf "$c\t\t- $d\n" ; done ; printf "Total: \t\t$(find $(pwd) | wc -l)\n"
    Thank you.
    0

Please sign in to leave a comment.