我尝试了以下命令,但是它不起作用:
apt-get source linux-image-$(uname -r)
答案1
最可能的原因是,你没有源URI在你的/etc/apt/sources.list
. 你应该添加如下一行(根据你特定的 Ubuntu 版本进行调整):
deb-src http://us.archive.ubuntu.com/ubuntu/ raring main restricted
然后运行sudo apt-get update
并尝试再次安装源。
我尝试了以下命令,但是它不起作用:
apt-get source linux-image-$(uname -r)
最可能的原因是,你没有源URI在你的/etc/apt/sources.list
. 你应该添加如下一行(根据你特定的 Ubuntu 版本进行调整):
deb-src http://us.archive.ubuntu.com/ubuntu/ raring main restricted
然后运行sudo apt-get update
并尝试再次安装源。