Skip to main content
2 of 2
fixed quiet->quiet typo to prevent cut-n-paste sadness.

Thanks @Programster solution works for me. Since I do not even have SSH access, I have to install and use virt-edit.

sudo apt install libguestfs-tools
sudo virt-edit -d myVM /boot/grub/grub.cfg

Replace all instances of quiet with quiet console=ttyS0 in the grub.cfg file and start my VM for console connect.

virsh start myVM && virsh console myVM

Do not forget to edit and update grub per @programster answer after login.

Erich Chen
  • 101
  • 1
  • 3