I installed ubuntu and after a fresh restart the sysyem goes to halt.
It shows following error in the virtual terminal
[484.269470] EXT4-fs error (device sda1): ext4_find_entry:1309: inode #2093097: comm dconf-service: reading directory lblock 0
Asked
Active
Viewed 103 times
2

sigdelsanjog
- 7,110
2 Answers
1
Looking at the output from the terminal, it seems there's some problem with partition inodes
, you should try below:-
NOTE:- fsck
/e2fsck
works on unmounted partitions, so you first need to boot to recovery, and then run fsck
from there by the option given or by dropping running to root shell prompt and then running the below commands.
Run:
umount /path/to/device
fsck -t ext3 /dev/whatever
followed by:
e2fsck -f /dev/whatever
EDIT:-

Sharad Gautam
- 2,560
0
Maybe a HHD problem, you can check potential problems with SMART on live session, more info here
-
Why woukd it boot and pass login screen and gimo to main screen, if it had HDD problem? – sigdelsanjog Jun 10 '15 at 13:08
fsck
is not the issue, you may need to reformat the partition and reinstall Ubuntu, if that doesn't fix it then maybe a HDD issue, BTW are you sure your HDD is perfect ( did it work?) ? – Sharad Gautam Jun 10 '15 at 13:21