确定所需的软件存储库

Ste*_*fan 1 centos terminal yum repository terminator

我是 linux 初学者(目前是centOS)。我试图安装终结者终端应用程序。我知道它不在 cent-os 的默认存储库中,但它应该在 epel-release 存储库中。

所以我做了:

yum install epel-release
Run Code Online (Sandbox Code Playgroud)

这安装得很好,然后:

yum install terminator
Run Code Online (Sandbox Code Playgroud)

但我收到错误:

No package terminator available.
Error: Nothing to do
Run Code Online (Sandbox Code Playgroud)

为什么这不起作用,您如何找出特定软件所需的存储库?

小智 5

按照以下步骤在全新安装的 CentOS 7 上安装 Terminator。

首先安装 Extra Packages for Enterprise Linux (EPEL) 存储库:

yum install epel-release
Run Code Online (Sandbox Code Playgroud)

然后更新新安装的repo:

yum update
Run Code Online (Sandbox Code Playgroud)

Terminator 包包含在 nux-desktop 存储库中。您需要先下载rpm 文件,然后才能将其添加到 yum.repos.d 目录中:

wget http://li.nux.ro/download/nux/dextop/el7/x86_64/nux-dextop-release- 0-1.el7.nux.noarch.rpm
Run Code Online (Sandbox Code Playgroud)

接下来,运行此命令来安装存储库:

rpm -Uvh nux-dextop-release-0-1.el7.nux.noarch.rpm
Run Code Online (Sandbox Code Playgroud)

然后更新新安装的repo:

yum update
Run Code Online (Sandbox Code Playgroud)

您现在已准备好安装终结器:

yum install terminator
Run Code Online (Sandbox Code Playgroud)

终结者现已安装并可以使用:)