Oct 14, 2005 #1 jules05 Technical User Joined Oct 14, 2005 Messages 1 Location US How do I check for used inodes in sun solaris?
Oct 15, 2005 #2 bfitzmai Technical User Joined May 15, 2004 Messages 853 Location 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 Joined Apr 29, 2003 Messages 2,455 Location GB Or use the '-inum' option to the find utility. -- Upvote 0 Downvote
Oct 16, 2005 #4 KenCunningham Technical User Joined Mar 20, 2001 Messages 8,475 Location GB Have you tried: df -F ufs -o i Assuming your filesystems are ufs of course. Upvote 0 Downvote