サードパーティーのリポジトリ追加と更新のための設定
##############################################################################
● yum 関連の設定(パッケージのインストール&更新用)
1) 速いサイトのリポジトリを使用するために fastestmirror をインストール
fastestmirror パッケージをサーチする
[root@localhost ~]# yum search fastestmirror
Loaded plugins: fastestmirror, refresh-packagekit, security
Loading mirror speeds from cached hostfile
* base: ftp.tsukuba.wide.ad.jp
* extras: ftp.tsukuba.wide.ad.jp
* updates: ftp.tsukuba.wide.ad.jp
========================== N/S Matched: fastestmirror ==========================
yum-plugin-fastestmirror.noarch : Yum plugin which chooses fastest repository
: from a mirrorlist
Name and summary matches only, use "search all" for everything.
[root@localhost ~]# yum -y install yum-plugin-fastestmirror.noarch
2) 最初に1度、更新を実行しておく
[root@localhost ~]# yum -y update
##############################################################################
● サードパーティーのリポジトリを追加する
【rpmforgeを追加】
http://pkgs.repoforge.org/rpmforge-release から
rpmforge-release-0.5.3-1.el6.rf.i686.rpm をダウンロードする
wget http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.3-1.el6.rf.i686.rpm
以下のようにインストール
rpm -Uvh rpmforge-release-0.5.3-1.el6.rf.i686.rpm
【epelを追加】
http://dl.fedoraproject.org/pub/epel/6/x86_64/ から
epel-release-6-8.noarch.rpm をダウンロードする
wget http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
以下のようにインストール
rpm -Uvh epel-release-6-8.noarch.rpm
戻る