Centos

哪個 yum repo 有 IRC 的 finch 和 pidgin?

  • June 7, 2020

雖然我能夠安裝 pidgin,但我只關注 IRC 的 finch 的 CLI 變體。

更一般地說,我不記得如何添加回購的細節,也不知道是哪個回購。

主要是: 我如何找到對 CentOS 有 finch 的 repo?

[nsaunders@rolly ~]$ 
[nsaunders@rolly ~]$ sudo yum install -y finch
Last metadata expiration check: 0:13:32 ago on Sun 07 Jun 2020 05:07:27 AM PDT.
No match for argument: finch
Error: Unable to find a match: finch
[nsaunders@rolly ~]$ 
[nsaunders@rolly ~]$ lsb_release -a
LSB Version:    :core-4.1-amd64:core-4.1-noarch
Distributor ID: CentOS
Description:    CentOS Linux release 8.1.1911 (Core) 
Release:    8.1.1911
Codename:   Core
[nsaunders@rolly ~]$ 
[nsaunders@rolly ~]$ cat /etc/yum.conf 
[main]
gpgcheck=1
installonly_limit=3
clean_requirements_on_remove=True
best=True
[nsaunders@rolly ~]$ 
[nsaunders@rolly ~]$ yum repolist
CentOS-8 - AppStream                                                                                4.6 MB/s | 7.0 MB     00:01    
CentOS-8 - Base                                                                                     1.3 MB/s | 2.2 MB     00:01    
CentOS-8 - Extras                                                                                    27 kB/s | 6.7 kB     00:00    
Last metadata expiration check: 0:00:01 ago on Sun 07 Jun 2020 05:23:35 AM PDT.
repo id                                                  repo name                                                            status
AppStream                                                CentOS-8 - AppStream                                                 5,318
BaseOS                                                   CentOS-8 - Base                                                      1,661
extras                                                   CentOS-8 - Extras                                                       20
[nsaunders@rolly ~]$ 
[nsaunders@rolly ~]$ yum repolist enabled
Last metadata expiration check: 0:00:17 ago on Sun 07 Jun 2020 05:23:35 AM PDT.
repo id                                                  repo name                                                            status
AppStream                                                CentOS-8 - AppStream                                                 5,318
BaseOS                                                   CentOS-8 - Base                                                      1,661
extras                                                   CentOS-8 - Extras                                                       20
[nsaunders@rolly ~]$ 

在 Ubuntu 上,yum install finch工作正常。

根據rpmfind,Finch 不適用於 CentOS 8。 Pidgin 可用,正如您在問題中已經指出的那樣。

由於 Pidgin 項目本身不提供預建構的包,您可以考慮從原始碼建構它。有關說明,請參閱此頁面:https ://pidgin.im/development/building/2.xy/

如該頁面所述,您可以通過--disable-gtkui在建構過程中傳遞參數來僅編譯 Finch 並排除 Pidgin。

引用自:https://unix.stackexchange.com/questions/591392