I have tried to boot into command line in Ubuntu 18.10 using ‘sudo systemctl set-default multi-user.target’, however on reboot I get nothing...no GUI, no command line, just a black screen...now I cannot boot up at all! Is there anything I can do?
Asked
Active
Viewed 9,794 times
2 Answers
1
I faced this problem with 20.04 in UEFI mode (the problem not occours in BIOS Legacy mode), but, when I disabled the splash screen, I can have tty1 at boot process ends. Here is the workarround:
systemctl set-default multi-user.target && sed -i "s/GRUB_CMDLINE_LINUX_DEFAULT=\"quiet\ splash\"/GRUB_CMDLINE_LINUX_DEFAULT=\"\"/g" /etc/default/grub && update-grub
I don't like splash screens, so for me it fits perfectly!