Debian

如何在 64 位 debian 安裝中獲取 32 位核心標頭檔

  • January 4, 2017
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做到這一點?

它需要修改 /etc/apt/sources.list 將 i386 添加到可下載的架構中,如下所示:

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

引用自:https://unix.stackexchange.com/questions/208589