When not specifying linux /vmlinuz root=/dev/sdb1
correctly in the grub shell, I get dropped to the initramfs shell. Instead of rebooting, I would like to continue boot process from there.
As explained here, I want to do:
mount /dev/sdb1 /root
exit
Unfortunately, the mount
command gives me an file or directory not found
message. This is in spite the fact that both stat /dev/sdb
and stat /root
give proper output.
This really leaves me puzzled. How can an existing file not be found?
The system is a Debian Stretch which I debootstrap
'd onto an USB drive. The screen you see is what comes when booting using that USB drives.
ln -s /dev/sdb1 /dev/root
? I tried it, and after typingexit
to leave initramfs shell and continue booting, I get dropped into initramfs shell again. I added some infos regarding the OS (Debian Stretch) -- whiledracut
is in the package repository, I don't know if Debian is usingdracut
by default. – Multisync Sep 22 '17 at 08:45