- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Help / out of inodes
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2004 03:49 PM
06-17-2004 03:49 PM
I've D220 running hp-ux 10.20. and today in the syslog files has message : out of inodes. then i issued command bdf -i, shows :
# bdf -i
Filesystem kbytes used avail %used iused ifree %iuse Mounted on
/dev/vg00/lvol3 139541 68841 56745 55% 22656 0 100% /
/ reaches 100% of iuse.
Pls help me to resolve the problem.
Thanks,
Otong!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2004 03:55 PM
06-17-2004 03:55 PM
Re: Help / out of inodes
As far as I can reach, only onething I can suggest is to look for files that you can remove.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2004 03:59 PM
06-17-2004 03:59 PM
Re: Help / out of inodes
Yes you're right the file system is HFS
So, how to find file which using a large of inode ?
thanks,
Otong!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2004 04:04 PM
06-17-2004 04:04 PM
Re: Help / out of inodes
Irrespective of the size of the file, it can occupy only one I-node. So you are effectively having 22656 files (or near about) in your /.
Look for the files created your sys admins in / that can be removed.
Or just wait for a better suggestion from the forum :-)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2004 05:12 PM
06-17-2004 05:12 PM
Solution1.Move files from the / file system to some other file system which will free up the inodes
2.Extend the size of the / file system using IGNITE-UX.
As / ia a hfs file system ,the number of inodes is fixed during the file system creation time.
Check for the unrequired files on the / file system and then move those files to some other file system.
Revert
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2004 05:24 PM
06-17-2004 05:24 PM
Re: Help / out of inodes
If you run out of inodes, review the files in your filesystem and determine if any files can be deleted.
Regards,
ira
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2004 06:48 PM
06-17-2004 06:48 PM
Re: Help / out of inodes
Try creating a log file of your / filesystem.
# find . -type f -xdev -exec ll {} \; > /tmp/lvol_log
check the logfile for files which should not be in root filesytem.
Hope this helps,
Robert-Jan.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2004 06:58 PM
06-17-2004 06:58 PM
Re: Help / out of inodes
What you can do is create one or more new logical volumes for directories with a lot of files and mount them on your '/' volume
This effectivly moves a lot of files using preciuos i-nodes to a new filesystem.
If you create these new volumes in the rootvolume group and use Ignite with the '-A' option the new volumes will be included in you bootable backup also.
Kl@@s
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2004 07:03 PM - last edited on 09-16-2024 02:20 AM by support_s
06-17-2004 07:03 PM - last edited on 09-16-2024 02:20 AM by support_s
Re: Help / out of inodes
find / -name core -print
I've suggested print rather than rm because developers sometimes create essential files called core. It's almost always safe to delete files called core, but if in doubt check first.
file core will usually return the result "core file from (application)".
Mark Syder (like the drink but spelt different)