我最近搬到了 xenial ubuntu。升级后,我无法再运行
sudo apt-get update
输出如下:
Get:1 http://it.archive.ubuntu.com/ubuntu xenial InRelease [247 kB]
Hit:2 http://it.archive.ubuntu.com/ubuntu xenial-updates InRelease
Hit:3 http://it.archive.ubuntu.com/ubuntu xenial-backports InRelease
Hit:4 http://security.ubuntu.com/ubuntu xenial-security InRelease
Hit:5 http://archive.canonical.com xenial InRelease
Hit:6 http://repository.spotify.com stable InRelease
Fetched 247 kB in 0s (307 kB/s)
Reading package lists... Done
W: Problem unlinking the file backup - Clean (21: Is a directory)
我尝试用谷歌搜索这个特定问题,但没有成功。谢谢你的帮助
答案1
我已经找到了解决方案:)您可以在这里找到类似的问题:“主题:软件升级问题:aptdaemon“。
问题出在以下目录:
/var/lib/apt/lists/partial
因此执行以下操作:
sudo rm -rf /var/lib/apt/lists
sudo apt-get update
成功了:)