下载编译安装:

wget http://download.qemu-project.org/qemu-2.9.0.tar.xz
tar xvJf qemu-2.9.0.tar.xz
cd qemu-2.9.0
./configure
make

过程中出现错误及依赖安装:

1、ERROR zlib check failed

sudo apt-get install zlib1g-dev

2、ERROR: glib-2.12 gthread-2.0 is required to compiler QEMU

sudo apt-get install libglib2.0-dev 

3、/bin/sh: 1:autoreconf: not found

sudo apt-get install autoconf automake libtool

4、VNC server running on '127.0.0.1:5900'

sudo apt-get install libsdl1.2-dev

通过以上方式能顺利的编译通过并安装,编译过程比较长,从21兆的代码编译出3G的文件。

 

参考:

http://www.qemu.org/download/#source

http://blog.csdn.net/liwugang43210/article/details/44155143

相关文章:

  • 2021-07-05
  • 2021-09-06
  • 2021-04-10
  • 2021-07-01
  • 2021-05-03
  • 2021-08-02
  • 2021-12-01
  • 2021-12-31
猜你喜欢
  • 2021-05-11
  • 2021-12-18
  • 2021-09-22
  • 2021-06-27
  • 2021-11-25
  • 2021-09-17
相关资源
相似解决方案