Linux 커널/모듈 버전 불일치를 수정하는 방법은 무엇입니까?

Linux 커널/모듈 버전 불일치를 수정하는 방법은 무엇입니까?

SD 카드에서 Wandboard Quad를 부팅하고 Ubuntu 15.10을 플래시했습니다.

배포판을 업그레이드한 후:

$> sudo apt-get update && sudo apt-get upgrade

내 지팡이 보드는 다음과 같습니다.

root@smog:~# uname -a
Linux smog 3.10.17-1.0.2-wandboard+gbe8d687 #1 SMP PREEMPT Wed Apr 1 08:46:23 UTC 2015 armv7l armv7l armv7l GNU/Linux
root@smog:~# cat /proc/version
Linux version 3.10.17-1.0.2-wandboard+gbe8d687 (tjakowit@hikalxplm30) (gcc version 4.9.1 (GCC) ) #1 SMP PREEMPT Wed Apr 1 08:46:23 UTC 2015
root@smog:~# ls -l /lib/modules/
total 4
drwxr-xr-x 4 root root 4096 May 21 20:05 4.2.0-42-generic
root@smog:~#
root@smog:~# lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 15.10
Release:        15.10
Codename:       wily

보시다시피 커널 버전과 모듈 버전(업그레이드된 rootfs의)이 일치하지 않으므로 다음과 같은 iptables 명령이 작동하지 않습니다.

root@smog:~# iptables -L
modprobe: ERROR: ../libkmod/libkmod.c:578 kmod_search_moddep() could not open moddep file '/lib/modules/3.10.17-1.0.2-wandboard+gbe8d687/modules.dep.bin'
iptables v1.4.21: can't initialize iptables table `filter': Table does not exist (do you need to insmod?)
Perhaps iptables or your kernel needs to be upgraded.

제 경우에는 이 명령이 작동하지 않습니다.여기):

$> sudo apt-get install linux-image-$(uname -r)
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package linux-image-3.10.17-1.0.2-wandboard+gbe8d687
E: Couldn't find any package by regex 'linux-image-3.10.17-1.0.2-wandboard+gbe8d687'

보드를 깨끗한 이미지로 다시 플래시하는 것(그리고 업그레이드하지 않는 것) 외에 이 문제를 어떻게 해결할 수 있습니까?

편집: apt-cache search linux-image 명령의 출력:

$> apt-cache search linux-image
alsa-base - ALSA driver configuration files
linux-image-generic - Generic Linux kernel image
linux-image-4.2.0-16-generic - Linux kernel image for version 4.2.0 on ARM (hard float) SMP
linux-image-4.2.0-16-generic-lpae - Linux kernel image for version 4.2.0 on ARM (hard float) SMP
linux-image-generic-lpae - Generic Linux kernel image
linux-image-3.4.0-1-hammerhead - Linux kernel image for version 3.4.0 on Nexus 5
linux-image-3.4.0-4-goldfish - Linux kernel image for version 3.4.0 on Android touch emulation
linux-image-3.4.0-5-chromebook - Linux kernel image for version 3.4.0 on Samsung Chromebook
linux-image-3.4.0-5-flo - Linux kernel image for version 3.4.0 on Nexus 10
linux-image-3.4.0-7-mako - Linux kernel image for version 3.4.0 on Nexus 4
linux-image-3.4.0-7-manta - Linux kernel image for version 3.4.0 on Nexus 10
linux-image-4.2.0-1013-raspi2 - Linux kernel image for version 4.2.0 on ARM (hard float) SMP
linux-image-chromebook - Linux kernel image for the Samsung ARM Chromebook.
linux-image-flo - Linux kernel image for the Nexus7 (flo).
linux-image-goldfish - Linux kernel image for the goldfish kernel.
linux-image-hammerhead - Linux kernel image for the Nexus 5 (hammerhead).
linux-image-mako - Linux kernel image for the Nexus4 (mako).
linux-image-manta - Linux kernel image for the Nexus10 (manta).
linux-image-nexus4 - Transitional package
linux-image-raspi2 - Linux kernel image for the BCM2709 architecture.
linux-image-4.2.0-42-generic - Linux kernel image for version 4.2.0 on ARM (hard float) SMP
linux-image-4.2.0-42-generic-lpae - Linux kernel image for version 4.2.0 on ARM (hard float) SMP
linux-image-4.2.0-1034-raspi2 - Linux kernel image for version 4.2.0 on ARM (hard float) SMP

관련 정보