커널 소스 코드 얻기

커널 소스 코드 얻기

일부 추가 모듈과 함께 컴파일하려면 특정 커널 버전이 필요합니다.

내가 입력할 때:

uname -r

알겠어요

3.8.0-29-generic

나는 이것이 필요하다.

 uname -a
 Linux "..." 3.8.0-29-generic #42~precise1-Ubuntu SMP Wed Aug 14 16:19:23 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux

이 버전은 어디서 찾을 수 있나요? 여기https://www.kernel.org/아마..

답변1

다음을 사용하여 소스 코드를 가져올 수 있습니다 apt. 파일에 /etc/apt/sources.list다음으로 시작하는 줄이 포함되어 있는지 확인하세요.

deb-src 

그런 다음 다음 명령을 사용하십시오.

apt-get update
#if you want to download the source into the current directory use:
apt-get source linux-image-$(uname -r)
#if you want the source to be installed in the system directory use:
apt-get install linux-source-$(uname -r)

폴더에 소스가 다운로드됩니다.

/usr/src or /usr/sources

관련 정보