disk with Home died. Unable to login emergency mode

Hello,

Please forgive me if I’m posting this in the wrong forum.

I am unable to login to my openSUSE computer.

My openSUSE PC is openSUSE 13.1 (Bottle) (x86_64).

The disk that contained my home partition failed. So, I installed a new hard disk which I would like to make my new **home **partition. But, I’m stuck.

I had root on /dev/sda1.
I had home on /dev/sdb1.

I purchased a new disk. I formatted it with GParted.

Then I booted but I was unable to login.
The screenshot below shows Emergency Mode! and indicates steps to take after logging on. But, there is no login prompt:

http://brianzad.freeshell.org/questions/os6.noLogin.JPG

I used <Ctrl><Alt><F1> to switch terminals but I can’t figure out how to login. Picture of different terminal below but no login screen found.

http://brianzad.freeshell.org/questions/os5.noLogin.JPG

Am I going about this the wrong way?
Should I have:

  • used some type of boot disk
  • get the disk ID and then edit /etc/fstab?
  • then restore my the files to my home partition?

I don’t know what to do.
If anyone can offer assistance I will appreciate it.

Thank you.

Known problem, systemd endlessly enters and kills emergency mode again and again:
https://bugzilla.novell.com/show_bug.cgi?id=852021

Add “init=/bin/sh” to the boot options (press ‘e’ at the boot menu, search for the line starting with “linux” and append it there, then press ‘F10’ to boot), you should get to a minimal text mode system then, where you can fix your system.

Am I going about this the wrong way?
Should I have:

  • used some type of boot disk

That would be another option, yes, but it should not be necessary.

  • get the disk ID and then edit /etc/fstab?

Yes, the new disk definitely has a different UUID, so the system cannot mount /home.
You have to correct the entry in the fstab. Maybe just use /dev/sdb1 or similar for a start, or find out the correct device with “ls -l /dev/disk/by-uuid”.

If in doubt, post the output of that command, and the content of the fstab.

  • then restore my the files to my home partition?

If you want to have them back, yes.
You should at least be able to login with an empty home as well though.

thank you!