nikolaymartin Member Joined May 23, 2019 Messages 4 Jun 10, 2019 Thread Author #1 I want to get the count of the inode for every file system mounted to the linux? Also free and used inode count information will be beneficial. Thanks
I want to get the count of the inode for every file system mounted to the linux? Also free and used inode count information will be beneficial. Thanks
edizgeorgi Active Member Joined May 31, 2019 Messages 17 Jun 10, 2019 #2 Linux df command provides what you are looking for. Df will print information like total, used,free and used percentage of the inodes. You can use -i option with the df command. referance: How To Use Linux df Command with Examples? – POFTUT Upvote 0 Downvote
Linux df command provides what you are looking for. Df will print information like total, used,free and used percentage of the inodes. You can use -i option with the df command. referance: How To Use Linux df Command with Examples? – POFTUT
Neemobeer Cloud Security Engineer Staff member Joined Jul 4, 2015 Messages 8,983 Jun 10, 2019 #3 As stated use the "df" command df -i will show the inode counts Upvote 1 Downvote Solution