Number of used inodes..?

Hello Experts

How can i know Number of used and free inodes in a file system?

thanx in advance..

will display the free inodes
go through the df man page:)

Assuming your filesystem is ufs.

$ df -F ufs -o i

Sample.

$ df -F ufs -o i
Filesystem             iused   ifree  %iused  Mounted on
/dev/dsk/c3t0d0s0     153209 2275399     6%   /
/dev/dsk/c3t0d0s3      75306  897302     8%   /var
/dev/dsk/c3t0d0s5      39319 3484201     1%   /export/home
/dev/dsk/c3t0d0s6          8  489208     0%   /opt/zoneshare
/dev/md/cappv01DS/dsk/d100
                       36709 1203803     3%   /opt/keris01
/dev/md/cappv08DS/dsk/d100
                       40587 3686773     1%   /opt/keris08

Thanx......