Raspbian/Debian Jessie: オフラインカーネルのアップグレード

Raspbian/Debian Jessie: オフラインカーネルのアップグレード

ラズベリーパイにraspbian(debian jessie)をインストールしましたが、現在インターネットはありません。また、インターネットに完全に接続できるWindowsコンピュータもあります。

私がインストールするパッケージには、次の内容があります。

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

また uname -r は次のように言います。

4.4.34+

このカーネルヘッダをどのようにアップグレードしますか?編集:他のUnixシステムがなく、VMを使用したくありません。

答え1

あなたはそれを使用することができますapt-get --print-urisパッケージをインストールします。詳細なチュートリアルは以下にあります。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.

あなたの場合、必須パッケージは次のとおりです。linux-headers

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

関連情報