作為安裝過程對於英特爾實感包,腳本嘗試執行以下行:
$ 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
然後重新啟動並重試。