본문 바로가기

갖가지 프로그램

[Ubuntu] apt-file search. 특정 라이브러리 파일을 사용하는 프로그램 찾기

참고: http://lists.debian.org/debian-user/2009/08/msg01143.html


의존성 문제를 해결할 때 주로 사용한다.

예를 들어 어떤 프로그램을 실행하였을 때 다음과 같은 에러가 나오는 경우


...
x11-inc.h:13:22: error: X11/Xlib.h: No such file or directory

...


다음과 같은 명령어를 주면 된다.


$ apt-file search X11/Xlib.h

libx11-dev: /usr/include/X11/Xlib.h ...


따라서 다음과 같은 명령어로 필요한 라이브러리를 설치할 수 있다.


apt-get install libx11-dev