Oct 14, 2005 #1 jules05 Technical User Oct 14, 2005 1 US How do I check for used inodes in sun solaris?
Oct 15, 2005 #2 bfitzmai Technical User May 15, 2004 853 US You can list the inodes being used with command:ls -Ri. If you are looking for a particular inode try: ls -Ri | grep <inode number> Upvote 0 Downvote
You can list the inodes being used with command:ls -Ri. If you are looking for a particular inode try: ls -Ri | grep <inode number>
Oct 15, 2005 #3 Salem Programmer Apr 29, 2003 2,455 GB Or use the '-inum' option to the find utility. -- Upvote 0 Downvote
Oct 16, 2005 #4 KenCunningham Technical User Mar 20, 2001 8,475 GB Have you tried: df -F ufs -o i Assuming your filesystems are ufs of course. Upvote 0 Downvote