作为安装过程对于 Intel Realsense 软件包,脚本尝试运行该行:
$ apt-get source linux-image-$(uname -r)
我知道这应该可以获取当前 Linux 内核的源代码。但是,它返回以下错误:
$ apt-get source linux-image-$(uname -r)
Reading package lists... Done
Building dependency tree
Reading state information... Done
Picking 'linux-lts-vivid' as source package instead of 'linux-image-3.19.0-37-generic'
E: Unable to find a source package for linux-lts-vivid
我也尝试直接这样做:
$ apt-get source linux-lts-vivid
...但这有同样的问题。
我该怎么做才能正确运行它?我在 14.04 LTS 上,并且已经运行了sudo apt-get update && sudo apt-get upgrade
。
答案1
linux-lts-vivid
已经过时。
您可以通过运行以下命令升级到受支持的内核:
sudo apt-get install linux-generic-lts-xenial
然后重新启动并重试。