라즈베리파이에 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
패키지를 설치하십시오. 자세한 튜토리얼은 다음에서 찾을 수 있습니다.우분투 도움말
--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