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.
'Research > Linux' 카테고리의 다른 글
When sidebar(unity) disappeared in Ubuntu (0) | 2016.05.31 |
---|---|
root ssh 접속 차단 (0) | 2015.08.04 |
명령어 치환. Command substitution (0) | 2015.06.01 |
socat / xinetd (0) | 2015.05.06 |
x64 syscall function table (0) | 2015.01.08 |