apt-get install update
和之间有什么区别apt-get update
?apt-get install update
对我来说也不起作用,不知道为什么。
输出apt-get install update
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package updat
输出的一些行apt-get update
Ign:2 http://ppa.launchpad.net/cassou/emacs/ubuntu xenial InRelease
Ign:3 http://dl.google.com/linux/chrome/deb stable InRelease
Get:4 http://linux.dropbox.com/ubuntu wily Release [6,596 B]
Hit:5 http://ubuntu-archive.mirror.serveriai.lt xenial InRelease
Hit:6 http://ppa.launchpad.net/graphics-drivers/ppa/ubuntu xenial InRelease
Hit:7 http://dl.google.com/linux/chrome/deb stable Release
Hit:9 http://repo.mysql.com/apt/ubuntu xenial InRelease
Ign:10 http://ppa.launchpad.net/kirillshkrogalev/ffmpeg-next/ubuntu xenial InRelease
我可以改用吗apt-get update
?
谢谢,Peace。
PS:我正在使用 16.04 LTS。
答案1
apt-get update
指示 apt 从远程存储库获取可用的新软件包列表(请注意,它不会安装任何东西,它只是获取可用软件包的列表)。
apt-get install update
告诉 apt 安装名为 的软件包update
。任何已知存储库中都没有该名称的软件包。这就是错误消息的原因。每次要求安装不存在的软件包时,都会收到此类消息。
虽然我并不像@terrance那样认为,而且这个问题并不是apt-get update 和 upgrade 有什么区别?,您可能应该看一下该页面,正如所建议的那样。
至于第二个问题,“如果我使用 apt-get update 可以吗?”:
这完全取决于您要实现的目标。如果您的目标是更新可用软件包的 apt 列表,那么可以。另一方面,如果您的目标是打印错误消息并且不更改 apt 内部状态,那么不行。