Check from SSH Login.
Login to the server using ssh command.
Ensure that you are at the home directory with the following command.
cd ~
Following is the command to check the total Inodes on your server.
find . | wc -l
Hit the following command if you are looking to view the inode values directory wise.
find . -printf “%h\n” | cut -d/ -f-2 | sort | uniq -c | sort -rn