我正在尝试启动一个新建的VM。我坚持以下几点。
想要从控制台开始,以便我可以包含此VM的用户名和其他信息:

   @vmhost02 ~]$ sudo virsh start --console testengine
   Domain testengine started
   Connected to domain testengine
   Escape character is ^]


它挂在那儿,不听“ ^]”以外的任何键

让我知道您是否需要更多信息以获取任何想法...

非常感谢。

最佳答案

1)

您可以尝试在访客中编辑/etc/default/grub,并确保您具有:

GRUB_TERMINAL=serial
GRUB_SERIAL_COMMAND="serial --unit=0 --speed=115200 --word=8 --parity=no --stop=1"


然后执行:

# update-grub
# reboot


2)

如果这不起作用,请尝试在quiet中的console=ttyS0中用GRUB_CMDLINE_LINUX_DEFAULT替换/etc/default/grub

GRUB_CMDLINE_LINUX_DEFAULT="... console=ttyS0"


然后再次:

# update-grub
# reboot


3)

您可能仍然需要尝试:

# systemctl enable [email protected]
# systemctl start [email protected]
# reboot

关于console - virsh控制台卡在转义字符“^]”上,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11845280/

10-16 18:15