I can't properly enter the ubuntu 16.04 LTS anymore. The boot stops with this message:
/dev/sda5: clean, xxxxx/xxxxx files, xxxx/xxxxx blocks.
I've had the pc running normal for 3 years now, and 2 days ago there were a power outtage, which shutdown the pc. When the power was back on and I turned on the pc, fsck started and stopped at this line. The only possible actions that I can take is:
mannualy reboot - which will take me back to this message once the computer boots again.
ctrl + alt + F1 - which allows me to actually work with the computer in a line of command. However, with this option I can't run any kind of application that requires a GUI (gparted or gthumb, for example). But I see that all my files are preserved.
I did see a few answers to this problem, saying that the message xx/xx files xx/xx blocks is normal and it means that everything is fine, but I cannot get past this message unless I run ctrl + alt + F1, so there is clearly something wrong.
A few things that I tried:
login (via ctrl+alt+F1) and run fsck -f: returns a warning message saying that it may damage the computer.
Enter the pc via recovery mode and run the fsck for all filesystems: It stops the verification once it reaches "Reached target Swap." After this, I can only hit enter and go the recovery mode menu.
Enter the pc via recovery mode > root > hit enter (for maintenance) > run sudo fsck -f /dev/sda5
The results are:
Pass 1: Checking inodes, blocks and sizes;
Pass 2: Checking directory structure;
Pass 3: Checking directoru connectivity;
Pass 4: Checking reference counts;
Pass 5: Checking summary information;
/dev/sda5 xxx/xxx files (0.2% non-contiguous), xx/xx blocks
Which, at this time, to me it means that the problem is still there.
I don't know what to do. Can anyone help me?
Thanks
Edit for the blkid and cat commands, as requested.
sudo blkid:
/dev/sda1: SEC_TYPE="ms-dos" LABEL="Dell Utility" UUID "5450-4444" TYPE="vfat" PARTUID="2ac21a9f-01"
/dev/sda2: LABEL="RECOVERY" UUID="964A9B734A9B4F3D" TYPE="ntfs" PARTUUID="2ac21a9f-02"
/dev/sda3: LABEL="OS" UUID="085C9DD05C9DB8C0" TYPE="ntfs" PARTUUID="2ac21a9f-03"
/dev/sda5: UUID="541386d5-b86c-41ad-bd00-d8af887358a9" TYPE="ext4" PARTUUID="2ac21a9f-05"
/dev/sda6: UUID="806ceccd-9af2-48d1-8995-4ca5e48342ba" TYPE="swap" PARTUUID="2ac21a9f-06"
cat /etc/fstab
output (ignoring the first paragraph):
< file system > < mount point > < type > < options > < dump > < pass > (this line is commented)
/ was on /dev/sda5 during installation (this line is commented)
UUID=541386d5-b86c-41ad-bd00-d8af887358a9 / ext4 errors=remount -ro 0 1
swap was on /dev/sda6 during installation (this line is commented)
UUID=806ceccd-9af2-48d1-8995-4ca5e48342ba none swap sw 0 0
sudo blkid
andcat /etc/fstab
and I'll take a look. – heynnema Mar 08 '18 at 19:42