web-dev-qa-db-ja.com

YumでCentOSにAlpineをインストールする方法

Yumにリポジトリを更新/更新または追加して、Alpineメールクライアントをインストールするにはどうすればよいですか?

thufir@arrakis:~ $ 
thufir@arrakis:~ $ ll /etc/yum.repos.d/
total 20
-rw-r--r-- 1 root root 2139 Sep 28  2013 CentOS-Base.repo
-rw-r--r-- 1 root root  718 May 31  2013 CentOS-Debuginfo.repo
-rw-r--r-- 1 root root  630 May 31  2013 CentOS-Media.repo
-rw-r--r-- 1 root root 3664 May 31  2013 CentOS-Vault.repo
-rw-r--r-- 1 root root  293 May 31  2013 schmooze.repo
thufir@arrakis:~ $ 
thufir@arrakis:~ $ cat /etc/redhat-release 
CentOS release 6.4 (Final)
thufir@arrakis:~ $ 
thufir@arrakis:~ $ yum search Alpine
Loaded plugins: fastestmirror, refresh-packagekit
Determining fastest mirrors
 * base: centos.eecs.wsu.edu
 * extras: mirror.spro.net
 * updates: mirror.hostduplex.com
schmooze-commercial                                                                                                          171/171
Warning: No matches found for: Alpine
No Matches found
thufir@arrakis:~ $ 
3
Thufir

行う:

$ Sudo yum install epel-release
$ Sudo yum install Alpine

1つ目はEPELをリポジトリリストに追加し、EPELはAlpineを提供します。

注:/etc/yum.repos.d/epel.repoでリポジトリが有効になっていることも確認してください:

enabled=1

またはコマンドラインから:

$ Sudo yum-config-manager --enable epel
4
13dimitar