![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Advanced & Expert Users Advanced UNIX and Linux questions go here. Expert-to-Expert. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Count total unique destination for source | new_buddy | Shell Programming and Scripting | 5 | 07-10-2008 03:50 AM |
| Inodes | nitin09 | Linux | 3 | 05-02-2008 04:12 AM |
| grep running total/ final total across multiple files | MrAd | UNIX for Dummies Questions & Answers | 5 | 05-08-2007 10:03 AM |
| inodes | gfhgfnhhn | UNIX for Dummies Questions & Answers | 3 | 10-11-2006 11:12 PM |
| INodes... | boris888 | Filesystems, Disks and Memory | 3 | 05-09-2002 07:21 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
total count of inodes in a mount
is there Any command to get total count and number of free inodes on a mount. please help
|
| Forum Sponsor | ||
|
|
|
#2
|
|||
|
|||
|
Depends on your platform...AIX df -i will tell you the inodes used and percentage.
Code:
df -i |
|
#3
|
||||
|
||||
|
df -i also works on HP-UX and RedHats CentOS
|
|
#4
|
|||
|
|||
|
Sorry forgot to mention, i need command for solaris.
tried df -t and df -i but did not work. |
|
#5
|
||||
|
||||
|
Code:
> cat /etc/release
Solaris 10 1/06 s10s_u1wos_19a SPARC
Copyright 2005 Sun Microsystems, Inc. All Rights Reserved.
Use is subject to license terms.
Assembled 07 December 2005
> df -i
Filesystem Inodes IUsed IFree IUse% Mounted on
[ACTUAL DATA REDACTED]
listed filesystems, # i nodes, # used, # free, % used, mount points
Funny how my manpage does not seem to show 'i' as an option, but there is an example within the manpage text: Example 4: Using df to Display Inode Usage The following example displays inode usage on all ufs file systems: example%/usr/bin/df -F ufs -o i |
|
#6
|
||||
|
||||
|
That's a UFS specific option. Look at man df_ufs.
|
||||
| Google The UNIX and Linux Forums |