본문 바로가기

Programming

QEMU monitor console

From - stackoverflow.


VNC 로 접속했을때는 Alt-2 인가 Ctrl-Alt-2 인가 무언가 hotkey 로 monitor console 을 띄우는데 사실 그럴필요없이 그냥 아래처럼하는게 제일 간편한것 같다.


You can access the monitor console via Telnet.


Start QEMU:


qemu-system-i386 -curses -monitor telnet:127.0.0.1:1234,server,nowait

Then, to access the monitor console, type this in another terminal:


telnet 127.0.0.1 1234