- 论坛徽章:
- 0
|
这是sco公司的解决方法:
Out of inodes on filesystem
An inode is an internal structure that the operating system uses to track and control information about a file, such as size and last access date. Each file uses one inode. When a filesystem runs out of inodes, the system displays the following error message:
NOTICE: type: Out of inodes on type dev hd (major/minor)
where type is the filesystem type and major/minor is the major and minor device numbers (for example hd (1/42) for the root filesystem).
To fix this problem:
Remove unnecessary (old, temporary, core, or log) files from the filesystem. See ``Maintaining free space in filesystems''.
Use find(C) to determine whether the filesystem contains a large number of small files.
The initial allocation of inodes assumes a ratio of about four data blocks per inode. If the filesystem contains mostly files that are smaller than four blocks, it runs out of inodes.
用find查找小于4块的文件,删之(当然是指临时文件啰,有用的别乱删啊) |
|