Qemu For ARM (1) : Install Qemu On LinuxMint

LinuxMint is one ubuntu-like distribution, I'm now use LinuxMint-11.

And I do not find any Chinese input software. So, I use English to record 

how to install Qemu on LinuxMint-11.

The reason  I use Qemu is the shortages of skyeye, I have to use Qemu for further purpose.

1. The best way to install Qemu is typein below words :

#sudo apt-get install qemu-system

2. If you want to compile Qemu from source code, You can download Qemu source code from:

http://wiki.qemu.org/Main_Page , latest release version is qemu-0.15.1

3.After extract qemu-0.15.1 folder from qemu-0.15.1.tar.gz, please follow below steps:

#sudo apt-get install libsdl-dev

#sudo apt-get install zlib1g-dev

#sudo apt-get install libglib2.0-dev

#./configure  --prefix=$PWD/__install --enable-sdl --target-list=arm-softmmu

#make

After make, qemu-system-arm is in arm-softmmu folder, after make install , all we need are in __install folder.

We can also export qemu-system-arm to PATH.





   


你可能感兴趣的:(Qemu For ARM (1) : Install Qemu On LinuxMint)