Raspbian / Debian Jessie: Atualizando o kernel offline

3

Eu tenho raspbian (debian jessie) instalado no meu pi framboesa que atualmente não tem internet. Eu também tenho uma máquina windows com acesso total à internet.

O pacote que estou instalando diz que

Module build for kernel 4.4.34+ was skipped since the kernel
headers for this kernel does not seem to be installed

Além disso, uname -r states:

4.4.34+

Como eu faria para atualizar esses cabeçalhos de kernel? Edit: Eu não tenho outro sistema unix e eu não quero usar uma VM

    
por Deimantux 15.02.2017 / 21:58

1 resposta

0

Você pode usar apt-get --print-uris para instalar seu pacote. Um tuto detalhado pode ser encontrado em Ajuda do Ubuntu

--print-uris

Instead of fetching the files to install, their URIs are printed. Each 
URI will have the path, the destination file name, the size and the 
expected  md5 hash. Note that the file name to write to will not always 
match the file  name on the remote site! This also works with the source 
and update commands.  When used with the update command, the MD5 and size 
are not included, and it  is up to the user to decompress any compressed 
files.

No seu caso, o pacote necessário é: linux-headers

 sudo apt-get --print-uris --yes install linux-headers-$(uname -r) | grep ^\' | cut -d\' -f2 > packageuri.htm
    
por 16.02.2017 / 14:11