Recently I faced a problem while rebooting my ubuntu i.e UNEXPECTED-INCONSISTENCY;-RUN-fsck-MANUALLY shows on screen.This problem occurred when file system may currupted or trying to make dual boot hence mount point is affected.
Run this commands to solve this:
- Restart and boot system in recovery mode. If you are using
dell
then you can try by pressingCTRL
while booting. - Run the following commands
fsck -fy /dev/sda1
#suppose your partition is /dev/sda1,-f
will execute command forcefully and-y
assumeyes
for all questions.restart
After restarting system, You may face a common problem while running command sudo apt-get update
. Don’t worry just run following commands:
sudo apt-get autoremove
sudo apt-get clean
sudo apt-get update
Thanks for the reading!!!!