mirror of
https://github.com/zardus/ctf-tools
synced 2024-11-14 09:47:08 +00:00
cb7fae5079
Tested with Kali 1.10
7 lines
170 B
Bash
Executable file
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
|