Hi,
I will explain ” Unexpected Inconsistency Run Fsck Manually ” error in the ODA Guess VM startup that is very bad and fatal error.
Sometimes your ODA Guess VM seems Online state, but you cannot access it. If you access ILOM or ODA VM VNC, you can see following screen.
You will see following error in the screen.
Unexpected Inconsistency Run Fsck Manually
EXT4-fs error count since last fsck:1 give root password for maintenance
This means your ODA Guess VM has fsck error and filesystem may be corrupt.
Type root password in the ILOM or Guess VM VNC. Then check mount count like following.
dumpe2fs /dev/xvda2 | egrep -i 'mount count|check' | more
Then reset that mount count like following.
tune2fs -c 0 -i 0 /dev/xvda2
Now Run Fsck Manually like following. You should change device names ( /dev/xvda1,2 etc. ) according to your environment.
fsck /dev/xvda1 fsck /dev/xvda2 fsck /dev/xvdb1
Now Run Fsck.ext4 Manually like following. You should change device names ( /dev/xvda1,2 etc. ) according to your environment.
fsck.ext4 -n /dev/xvda1 fsck.ext4 -n /dev/xvda2 fsck.ext4 -n /dev/xvdb1
Do you want to learn Linux System Administration for Beginners, then read the following articles.
https://ittutorial.org/linux-administration-tutorial-for-beginners/
2,762 views last month, 4 views today