Target Hardware Vendor: Qemu Target Hardware model: Malta Target Architecture: MIPS Target OS: Debian 6.0/Linux 3.2.0-4-4kc Run under qemu: Username Password root root user user ``` qemu-system-mips -M malta -nographic -kernel vmlinux-3.2.0-4-4kc-malta -hda debian_squeeze_mips_standard.qcow2 -append "root=/dev/sda1 console=tty0" -net user,hostfwd=tcp::10022-:22 -net nic ``` To test a binary with networking ``` # Setup a reverse forward over ssh if you need it # this will forward localhost:9000 in the VM to localhost:9000 on the Host ssh -p 10022 -R 9000:localhost:9000 user@localhost # Transfer the binary to test scp -P 10022 mips-unknown-linux-musl.bin user@localhost:/tmp # Run the binary in the VM ```