I tried to install another OS alongside with the current Ubuntu 16.04, but at the end of the installation process when grub should be installed a fatal error occurred. Since then, I cannot boot to my OS any longer. "Welcome to emergency mode" is what I see instead of login screen. I found that /home
partition isn't mounted. To mount it I do mount -a
in this "emergency mode" then press Ctrl + D
and then the OS is loading normally. mount /etc/sda9 /home && systemctl default
also works fine.
Here is my fstab
:
# / was on /dev/sda8 during installation
UUID=43c8292e-dfce-4191-9040-8797667be0e3 / ext4 errors=remount-ro 0 1
# /boot was on /dev/sda7 during installation
UUID=2b80fd17-a9d5-4c80-8e6e-d917f4e02cc0 /boot ext2 defaults 0 2
# /home was on /dev/sda9 during installation
UUID=0873df66-f7fe-416c-bebf-eec4e26f11e7 /home ext4 defaults 0 2
# swap was on /dev/sda6 during installation
UUID=52728841-4b38-416b-888c-9742e98a2943 none swap sw 0 0
What can I do to get it back to work?