2010년 3월 19일 금요일

[커널 컴파일] 'make menuconfig' error


문제현상은 다음과 같다.









문제 발생 원인 : libncurses library 미설치

문제 해결
1. libncurses library 패키지 검색

imsu@imsu-desktop:~$ apt-cache search --names-only libncurses

libncurses5 - Shared libraries for terminal handling

libncurses5-dbg - Debugging/profiling libraries for ncurses

libncurses5-dev - Developer's libraries and docs for ncurses

libncursesw5 - Shared libraries for terminal handling (wide character support)

libncursesw5-dbg - Debugging/profiling libraries for ncurses

libncursesw5-dev - Developer's libraries for ncursesw

libncurses-ruby - ruby Extension for the ncurses C library

libncurses-ruby1.8 - ruby Extension for the ncurses C library

libncurses-ruby1.9 - ruby Extension for the ncurses C library

libncurses4 - Shared libraries for terminal handling

  패키지가 검색되었다.!!!!!

2. libncurses install

sudo apt-get install libncurses5-dev

 
  패키지 설치 완료!!!!
3. linux kernel 위치로 이동 후 menuconfig 명령 실행 (커널 버전 : 2.4.32)

cd /usr/src/linux-2.4.32

sudo make menuconfig

     
 
유후 해결 완료!!!!

댓글 없음:

댓글 쓰기

GDB

변수 값 출력 명령 출력 명령 p [변수명] p [함수명] p /[출력형식] [변수명]  출력 형식 t : binary o: octal d: decimal u: unsigned decimal x: hexadecimal c: ...