본문 바로가기

Programming

QEMU compile on Ubuntu12.04

1. git 로 최신소스 클로닝.

git clone git://git.qemu-project.org/qemu.git


2. ./configure 하면 zlib 어쩌고 에러남.

glib-2.0 required to compile QEMU

-> apt-get install libglib2.0-dev


3. pixman, DTC 패키지 설치하라고 에러남. 

git submodule 어쩌고 하라는대로 하면됨.


4. autoreconf 없다고 에러남.

/bin/sh: 1: autoreconf: not found

-> apt-get install dh-autoreconf


5. 이제 make 


6. make install 로 생성된 바이너리들 환경변수 경로에 등록.

'Programming' 카테고리의 다른 글

python malware scanner  (0) 2013.06.29
Alpine Linux on QEMU  (0) 2013.06.28
IDA remote debugging  (0) 2013.06.24
x64 parameter passing  (0) 2013.06.24
kernel module cross compile makefile  (1) 2013.06.14