1833376 Members
2909 Online
110052 Solutions
New Discussion

mount proble

 
thebeatlesguru
Regular Advisor

mount proble

#mount /dev/oraarcvg02/lvol1 /oraarclog02
vxfs mount: /dev/oraarcvg02/lvol1 is corrupted. needs checking

how can i check it?
thanks
hihi
4 REPLIES 4
Michael Tully
Honored Contributor

Re: mount proble

Hi,

Try using 'fsck'

# fsck -o full /dev/oraarcvg02/rlvol1
Once the fsck has completed, you should be able to mount your filesystem.

HTH
Michael
Anyone for a Mutiny ?
S.K. Chan
Honored Contributor

Re: mount proble

Sounds like the VXFS filesystem intent log hits some error. You should be able to do a full fsck to fix this.
# fsck -F vxfs -y -o full /dev/oraarcvg02/lvol1
and then mount it afterwards.
Ravi_8
Honored Contributor

Re: mount proble

Hi,
since the file system is corrupted, you need to check (fsck) that filesystem

#fsck -o full /dev/oraarcvg02/lvol1

then mount the file system
never give up
Armin Feller
Honored Contributor

Re: mount proble

If the 'fsck' doesn't work:

# fsck -F vxfs -y -o full /dev/oraarcvg02/lvol1

you can try to mount the filesystem readonly, backup the datas, re-create the file and restore the datas:

# mount -F vxfs -o ro /dev/oraarcvg02/lvol1 /oraarclog02

---> backup the datas

# newfs -F vxfs /dev/oraarcvg02/rlvol1

# mount -F vxfs /dev/oraarcvg02/lvol1 /oraarclog02

---> restore the datas

Good luck ;-)