我是 Ubuntu 新手。我无法从终端下载预加载。当我输入:
sudo apt-get install preload
它给了我这样的信息:
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package preload
你知道为什么会发生这种情况吗?
答案1
你正在运行哪个版本的 Ubuntu?我假设这个答案是 12.04。
如果您使用的是 VPS,则您的托管服务提供商可能拥有与标准 Ubuntu 不同的存储库。
检查/etc/apt/sources.list
确保您已配置 Universe 存储库,例如,您已取消注释以下几行:
deb http://us.archive.ubuntu.com/ubuntu/ precise universe
deb-src http://us.archive.ubuntu.com/ubuntu/ precise universe
deb http://us.archive.ubuntu.com/ubuntu/ precise-updates universe
deb-src http://us.archive.ubuntu.com/ubuntu/ precise-updates universe
也可能是您遇到了坏镜像、瞬态网络或 DNS 问题,不过这些问题很可能通过 来解决sudo apt-get update
。
任何更改之后,您都需要再次更新。