64비트 데비안 설치에서 32비트 커널 헤더를 얻는 방법

64비트 데비안 설치에서 32비트 커널 헤더를 얻는 방법
aptitude search linux-headers

다음을 제공합니다:

p   linux-headers-3.16.0-4-all      - All header files for Linux 3.16 (meta-pack
p   linux-headers-3.16.0-4-all-amd6 - All header files for Linux 3.16 (meta-pack
i   linux-headers-3.16.0-4-amd64    - Header files for Linux 3.16.0-4-amd64     
i A linux-headers-3.16.0-4-common   - Common header files for Linux 3.16.0-4    
p   linux-headers-amd64             - Header files for Linux amd64 configuration

하지만 32비트 커널 헤더를 가져와야 합니다.

apt를 사용하여 이를 수행하는 방법은 무엇입니까?

답변1

다운로드 가능한 스키마에 i386을 추가하려면 다음과 같이 /etc/apt/sources.list를 수정해야 합니다.

deb [arch=amd64,i386] http://httpredir.debian.org/debian/ jessie main contrib 

그 후에는해야 할 일

apt-get update
dpkg --add-architecture i386
apt-get update

그리고 i386 아키텍처 패키지를 설치하십시오.

apt-get install linux-headers-3.16.0-4-686-pae:i386

관련 정보