have been trying to fix this for hours, think I read every inode thread on here, but couldn't find a solution
/mnt is a second hard disk, does this count for the inode use of VolGroup-lv_root?
Tried the purge_dead_comet_files, but that only deleted 600 inodes
Any advice on how to reduce the inodes or can I relocate some directories to /home partition?
Thanks
Code:
df -i
Filesystem Inodes IUsed IFree IUse% Mounted on
/dev/mapper/VolGroup-lv_root
3276800 3276442 358 100% /
tmpfs 1001872 1 1001871 1% /dev/shm
/dev/sda1 128016 53 127963 1% /boot
/dev/mapper/VolGroup-lv_home
57229312 9628544 47600768 17% /home
Code:
echo "Inode usage for: $(pwd)" ; for d in `find -maxdepth 1 -type d |cut -d\/ -f2 |grep -xv . |sort`; do c=$(find $d |wc -l) ; printf "$c\t\t- $d\n" ; done ; printf "Total: \t\t$(find $(pwd) | wc -l)\n"
Inode usage for: /
1 - backup
113 - bin
44 - boot
792 - dev
3536 - etc
30028386 - home
2 - home2
9062 - lib
408 - lib64
1 - lost+found
1 - media
3023727 - mnt
4298 - opt
find: `proc/56054': No such file or directory
find: `proc/56232': No such file or directory
find: `proc/56233': No such file or directory
657576 - proc
1425 - root
293 - sbin
1 - selinux
1 - srv
10529 - sys
12 - tmp
201416 - usr
40927 - var
find: `/proc/56348': No such file or directory
Total: 34006089
Tried the purge_dead_comet_files, but that only deleted 600 inodes
Any advice on how to reduce the inodes or can I relocate some directories to /home partition?
Thanks