この文書の現在のバージョンと選択したバージョンの差分を表示します。
両方とも前のリビジョン 前のリビジョン | |||
01_linux:01_net:old_yum [2013/11/07 21:34] matsui |
01_linux:01_net:old_yum [2013/11/07 21:35] (現在) matsui |
||
---|---|---|---|
ライン 1: | ライン 1: | ||
+ | ====== 古いyumを利用したい ====== | ||
+ | CentOS 4 で古いyumを利用したい時 | ||
+ | |||
+ | <code console> | ||
+ | # patch -p0 < old_yum.txt | ||
+ | </code> | ||
+ | |||
+ | old_yum.txt | ||
+ | |||
+ | | ||
+ | --- /etc/yum.repos.d/CentOS-Base.repo.orig | ||
+ | +++ /etc/yum.repos.d/CentOS-Base.repo | ||
+ | @@ -13,8 +13,9 @@ | ||
+ | | ||
+ | [base] | ||
+ | name=CentOS-$releasever - Base | ||
+ | -mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os | ||
+ | +#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os | ||
+ | #baseurl=http://mirror.centos.org/centos/$releasever/os/$basearch/ | ||
+ | +baseurl=http://vault.centos.org/4.9/os/$basearch/ | ||
+ | gpgcheck=1 | ||
+ | gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-centos4 | ||
+ | priority=1 | ||
+ | @@ -23,8 +24,9 @@ | ||
+ | #released updates | ||
+ | [update] | ||
+ | name=CentOS-$releasever - Updates | ||
+ | -mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=updates | ||
+ | +#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=updates | ||
+ | #baseurl=http://mirror.centos.org/centos/$releasever/updates/$basearch/ | ||
+ | +baseurl=http://vault.centos.org/4.9/updates/$basearch/ | ||
+ | gpgcheck=1 | ||
+ | gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-centos4 | ||
+ | priority=1 | ||
+ | @@ -33,8 +35,9 @@ | ||
+ | #packages used/produced in the build but not released | ||
+ | [addons] | ||
+ | name=CentOS-$releasever - Addons | ||
+ | -mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=addons | ||
+ | +#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=addons | ||
+ | #baseurl=http://mirror.centos.org/centos/$releasever/addons/$basearch/ | ||
+ | +baseurl=http://vault.centos.org/4.9/addons/$basearch/ | ||
+ | gpgcheck=1 | ||
+ | gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-centos4 | ||
+ | priority=1 | ||
+ | @@ -43,8 +46,9 @@ | ||
+ | #additional packages that may be useful | ||
+ | [extras] | ||
+ | name=CentOS-$releasever - Extras | ||
+ | -mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=extras | ||
+ | +#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=extras | ||
+ | #baseurl=http://mirror.centos.org/centos/$releasever/extras/$basearch/ | ||
+ | +baseurl=http://vault.centos.org/4.9/extras/$basearch/ | ||
+ | gpgcheck=1 | ||
+ | gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-centos4 | ||
+ | priority=1 | ||
+ | @@ -53,8 +57,9 @@ | ||
+ | #additional packages that extend functionality of existing packages | ||
+ | [centosplus] | ||
+ | name=CentOS-$releasever - Plus | ||
+ | -mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=centosplus | ||
+ | +#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=centosplus | ||
+ | #baseurl=http://mirror.centos.org/centos/$releasever/centosplus/$basearch/ | ||
+ | +baseurl=http://vault.centos.org/4.9/centosplus/$basearch/ | ||
+ | gpgcheck=1 | ||
+ | enabled=0 | ||
+ | gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-centos4 | ||
+ | @@ -64,8 +69,9 @@ | ||
+ | #contrib - packages by Centos Users | ||
+ | [contrib] | ||
+ | name=CentOS-$releasever - Contrib | ||
+ | -mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=contrib | ||
+ | +#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=contrib | ||
+ | #baseurl=http://mirror.centos.org/centos/$releasever/contrib/$basearch/ | ||
+ | +baseurl=http://vault.centos.org/4.9/contrib/$basearch/ | ||
+ | gpgcheck=1 | ||
+ | enabled=0 | ||
+ | gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-centos4 | ||
+ | |||
+ | [[http://d.hatena.ne.jp/tmatsuu/20120324/1332578375|http://d.hatena.ne.jp/tmatsuu/20120324/1332578375]] |