如何管理 Ubuntu 以前版本的软件包

如何管理 Ubuntu 以前版本的软件包

我有 Ubuntu 14.04 (Trusty Tahr)。这个输出应该可以解释我所指的内容

$>dpkg -l | grep raring
ii  ezame                                                                0.5~raring-1                                        all          Eza's Menu Editor
ii  nautilus-open-as-root                                                3.6.0-0~9~raring1                                   all          nautilus-open-as-root
ii  nautilus-open-terminal-here                                          3.6.0-0~9~raring1                                   all          nautilus-open-terminal-here
ii  nautilus-refresh                                                     3.6.0-0~9~raring1                                   all          For those who are comming from windows world and misses the refresh option .. here it is finally lands to ubuntu  by Dr. Amr osman <[email protected]>
ii  tlp                                                                  0.4-1~raring                                        all          Save battery power on laptops
ii  tlp-rdw                                                              0.4-1~raring                                        all          Radio device wizard
ii  ubuntu-wallpapers-raring                                             14.04.0.1-0ubuntu1                                  all          Ubuntu 13.04 Wallpapers
ii  virtualbox-4.3                                                       4.3.10-93012~Ubuntu~raring                          amd64        Oracle VM VirtualBox

为什么这些软件包有如此多的引用?我该如何将它们更新到新的 Trusty 版本?

答案1

由于不同的原因,这些软件包有一个“令人讨厌”的引用。它们中的大多数似乎是从 PPA 安装的比如这个. 这些必须在 Ubuntu 更新时手动处理。

查看软件源,您应该会看到相关的 PPA 源。您必须手动将其更新为当前版本,或者您可以使用像这样的工具。不过,PPA 可能没有适用于您当前版本的软件包,这是该工具将检查的内容。

壁纸包是安装 Raring 时留下的。该ubuntu-wallpapers包将自动安装当前版本 ubuntu-wallpapers-trusty。如果您不需要 Raring 版本,可以将其删除。

答案2

将这些软件包升级到其存储库中存在最新版本, 跑步:

sudo apt-get update && sudo apt-get install <package_1> <package_2> <package_3> ...

但这并不意味着您会获得一个Trusty版本,也不意味着您会获得最新版本。

前者只是因为该包可能从那时起就没有更新过Raring

后者只是因为软件包的维护者(或者只是PPA,但这种情况比较少见)可能在此期间发生了变化,而最新的软件包可能会在另一个中找到PPA

例如:你ezame的版本(如果你正在使用PPA) 是存储库中存在的最新版本(即:它在该存储库中从未更新过Raring)。如果没有其他PPAs人维护它,则该Raring版本是最新版本。

相关内容