ctf-tools/qemu/install
raildex1 cb7fae5079 Updated qemu to 2.4.0.1
Tested with Kali 1.10
2015-10-29 00:36:31 +11:00

7 lines
170 B
Bash
Executable file

#!/bin/bash
curl http://wiki.qemu-project.org/download/qemu-2.4.0.1.tar.bz2 | tar xvj
cd qemu-2.4.0.1
./configure --prefix=$(dirname $PWD)
make -j $(nproc)
make install