我打了电话sudo apt-get update
,得到了这样的信息
错误 http://ppa.launchpad.net trusty/main i386 软件包 404 未找到
这
错误 http://ppa.launchpad.net trusty/main i386 软件包 404 未找到
最后一行是这样的
W:无法获取 http://ppa.launchpad.net/marlin-devs/marlin-daily/ubuntu/dists/trusty/main/binary-i386/Packages 404 未找到 W:无法获取 http://ppa.launchpad.net/tiheum/equinox/ubuntu/dists/trusty/main/binary-i386/Packages 404 未找到 E:部分索引文件下载失败。它们已被忽略或使用旧文件代替。
那么,有人能帮助我吗?仅供参考,这是来自 Ubuntu 14.04
答案1
下面一行不是有效的 PPA 行,因此请将其删除或在文件#
中将其前面放置符号/etc/apt/sources.list
(您可以使用 编辑它sudo -H gedit /etc/apt/sources.list
):
deb http: //ppa.launchpad.net trusty/main i386 Packages
并删除未找到的 PPA:
sudo add-apt-repository -r ppa:marlin-devs/marlin-daily
sudo add-apt-repository -r ppa:tiheum/equinox
现在运行sudo apt-get update
命令。