# QEMU ## Create image ```bash qemu-img create -f raw image_file 4G ``` Run iso with image ```bash qemu-system-i386 -cdrom _iso_image_ -boot order=d _qemu_image_ ``` ### Setting up memory > -m 512 ### Setting up network card -net nic ### Lunching image If everything installed then image could be runed just with ```bash qemu-system-i386 _options_ _disk_image_ ``` ## Compile qemu To get qemu you can download file or just clone git repo here is page to download files [http://wiki.qemu.org/Download](http://wiki.qemu.org/Download) and git repo located at ```bash git clone git://git.qemu-project.org/qemu.git ``` To see avaliable targets run ```bash ./configure --help ``` there alos many different options and targets just choose one that you need most Configure targets: ```bash ./configure --target-list=arm-softmmu,arm-linux-user ``` or could be choosen to compile all targets ```bash ./configure --enable-system ``` Compile ```bash make ``` ## Reference 1. [https://wiki.archlinux.org/index.php/QEMU](https://wiki.archlinux.org/index.php/QEMU) 2. [http://www.cnx-software.com/2012/03/08/how-to-build-qemu-system-arm-in-linux/](http://www.cnx-software.com/2012/03/08/how-to-build-qemu-system-arm-in-linux/) 3. [https://wiki.linaro.org/PeterMaydell/KVM/HowTo/BuildQEMU](https://wiki.linaro.org/PeterMaydell/KVM/HowTo/BuildQEMU)