1833187 Members
2704 Online
110051 Solutions
New Discussion

Inode errors ???

 
cl_5
Frequent Advisor

Inode errors ???

Hi,

I??ve got installed 3 new C3750 Workstations with HPUX 11.00
Since the systems are up and running I receive the following error message:
2 error 6
msgcnt 59011 vxfs: mesg 016: vx_ilisterr - / file system error reading inode 44056
msgcnt 59012 vxfs: mesg 008: vx_direrr: vx_dirlook_4 - / file system inode 35455 block 696382 error 6

thanks for help

Carsten
5 REPLIES 5
RAC_1
Honored Contributor

Re: Inode errors ???

seems problem reading mentioned inode.

do full fsck on filesystem
There is no substitute to HARDWORK
T G Manikandan
Honored Contributor

Re: Inode errors ???

run fsck on the file system

#fsck -F vxfs -y -o full /dev/vgxx/lvol...


Armin Feller
Honored Contributor

Re: Inode errors ???

Hi,

please find the disk or lvol where the inode is located on:

# find / -inum 44056

Then umount the filesystem and run an fsck:

# fsck -o full /dev/rdsk/c...
or
# fsck -o full /dev/vgXY/rlvolX

Regards ...
Armin
RAC_1
Honored Contributor

Re: Inode errors ???

ls -ali

check your files/dirs

do dd if=your_file/dir of=/dev/null bs=1k

check for errors.
There is no substitute to HARDWORK
Bill Hassell
Honored Contributor

Re: Inode errors ???

The key here is the error number (in Unix, it is known as errno). From the file: /usr/include/sys/errno.h:

ENXIO 6 /* No such device or address

Since this is the root filesystem, we can rule out the "no such device" part of the error message, but the "address" is likely the problem. It would appear that the filesystem is trying to access an area beyond the end of the logical volume. Did someone (as root) run the lvreduce command? If so, it will always work but it will also destroy filesystems since LVM commands know nothing about filesystems. LVM simply carves the disk into logical sections and some of these sections may contain a filesystem.

If you've been using lv commands to 'adjust' the size of lvol1, lvol2 or lvol3 (/stand, primary swap and / respectively), you may have some fairly serious problems with the filesystems. If possible, use lvextend to put back the original definitions. Then (download if necessary) use Ignite/UX to backup vg00 and restore interactively so you can adjust all the lvol sizes.


Bill Hassell, sysadmin