Research/Linux

ARMv8 Qemu Install Reference

cheesechoi 2014. 11. 11. 19:15









https://developer.mozilla.org/en-US/docs/Mozilla/Developer_guide/Virtual_ARM_Linux_environment

http://www.cnx-software.com/2011/03/15/qemu-linaro-versatile-express-image-on-ubuntu-10-10/

http://opensecuritytraining.info/IntroARM_files/IntroARM_Setting_up_QEMU.pdf

https://sskaje.me/2013/12/virtualized-arm-ubuntu/#.VGHU2fmsXig

http://lwip-rtos-html-arm.googlecode.com/svn-history/r6/references/tmp_text.txt

https://releases.linaro.org/13.09/openembedded/aarch64


http://chanik.egloos.com/m/1761448


aarch64 : http://www.bennee.com/~alex/blog/2014/05/09/running-linux-in-qemus-aarch64-system-emulation-mode/





The QEMU man page  specifies -redir as follows:


-redir [tcp|udp]:host-port:[guest-host]:guest-port

When using the user mode network stack, redirect incoming TCP or UDP connections to the host port host-port to the guest guest-host on guest port guest-port. If guest-host is not specified, its value is 10.0.2.15 (default address given by the built-in DHCP server). For example, to redirect host X11 connection from screen 1 to guest screen 0, use the following: 


# on the host qemu 

-redir tcp:6001::6000 [...] 

# this host xterm should open in the guest X11 server 

xterm -display :1  


To redirect telnet connections from host port 5555 to telnet port on the guest, use the following:  


# on the host qemu 

-redir tcp:5555::23 [...] 

telnet localhost 5555  


Then when you use on the host CWtelnet localhost 5555, you connect to the guest telnet server.