如何使用终端找到安装应用程序的包名称?

如何使用终端找到安装应用程序的包名称?

我的 Ubuntu 14.04 软件中心的安装按钮因未知原因被禁用。所以我想使用终端安装软件。但我不知道软件包名称。

那么我如何获取包名称?

注意:我可以使用软件中心查看软件的详细信息,但无法安装。

答案1

您可以在 APT 缓存中搜索它:

apt-cache search <keyword/regex>

例如,如果我想安装 SuperTuxKart,但不知道包名,我会使用apt-cache search tux。这将返回名称或简短描述包含此关键字或与正则表达式匹配的包列表。以下是搜索晚礼服

supertux-stable - Classic 2D jump 'n run sidescroller with Tux
supertuxkart - 3D kart racing game
supertuxkart-data - 3D kart racing game (data)
supertuxkart-dbg - 3D kart racing game (debug)
tuxcards - hierarchical notebook for note and idea management
tuxcmd - twin-panel (commander-style) file manager using GTK+ 2

现在我搜索 SuperTuxKart 的结果并找到包supertuxkart。这显然是包名称。

答案2

您可以在以下位置搜索存储库http://packages.ubuntu.com/

相关内容