centos使用rpmforge-release

简介:

rpmforge又名repoforge,是CentOS官方推荐的第三方yum源。提供超过5000种rpm格式的软件包,其中包括vlc、mplayer、xmms-mp3等流行的多媒体工具。

C7:

1
2
wget http: //repository .it4i.cz /mirrors/repoforge/redhat/el7/en/x86_64/rpmforge/RPMS/rpmforge-release-0 .5.3-1.el7.rf.x86_64.rpm
rpm -ivh rpmforge-release-0.5.3-1.el7.rf.x86_64.rpm

C6:

1
2
3
4
5
6
7
i386
wget http: //repository .it4i.cz /mirrors/repoforge/redhat/el6/en/i386/rpmforge/RPMS/rpmforge-release-0 .5.3-1.el6.rf.i686.rpm
rpm -ivh rpmforge-release-0.5.3-1.el6.rf.i686.rpm
 
x86_64
wget http: //repository .it4i.cz /mirrors/repoforge/redhat/el6/en/x86_64/rpmforge/RPMS/rpmforge-release-0 .5.3-1.el6.rf.x86_64.rpm
rpm -ivh rpmforge-release-0.5.3-1.el6.rf.x86_64.rpm

C5:

1
2
3
4
5
6
7
8
9
10
11
i386
wget http: //repository .it4i.cz /mirrors/repoforge/redhat/el5/en/i386/rpmforge/RPMS/rpmforge-release-0 .5.3-1.el5.rf.i386.rpm
rpm -ivh rpmforge-release-0.5.3-1.el5.rf.i386.rpm
 
x86_64
wget http: //repository .it4i.cz /mirrors/repoforge/redhat/el5/en/x86_64/rpmforge/RPMS/rpmforge-release-0 .5.3-1.el5.rf.x86_64.rpm
rpm -ivh rpmforge-release-0.5.3-1.el5.rf.x86_64.rpm
 
ppc
wget http: //repository .it4i.cz /mirrors/repoforge/redhat/el5/en/ppc/rpmforge/RPMS/rpmforge-release-0 .5.1-1.el5.rf.ppc.rpm
rpm -ivh rpmforge-release-0.5.1-1.el5.rf.ppc.rpm

上面这些rpm包的地址都可以到https://pkgs.org网站中直接搜索相应的rpm包即可,如:直接搜索rpmforge或者epel,找到合适的rpm包后下载即可


验证安装:

1
2
3
4
5
6
7
8
9
10
11
12
13
[root@localhost ~] # yum repolist
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
  * base: mirrors.aliyun.com
  * extras: mirrors.aliyun.com
  * rpmforge:  ftp .kddilabs.jp
  * updates: mirrors.aliyun.com
repo  id                              repo name                                                           status
base                                CentOS-6 - Base - mirrors.aliyun.com                                6,706
extras                              CentOS-6 - Extras - mirrors.aliyun.com                                 46
rpmforge                            RHEL 6 - RPMforge.net - dag                                         4,718
updates                             CentOS-6 - Updates - mirrors.aliyun.com                               721
repolist: 12,191

使用RPMforge(Repoforge)源查找mplayer

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[root@localhost ~] # yum --enablerepo=rpmforge info mplayer
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
  * base: mirrors.aliyun.com
  * extras: mirrors.aliyun.com
  * rpmforge: mirrors.tuna.tsinghua.edu.cn
  * updates: mirrors.aliyun.com
Available Packages
Name        : mplayer
Arch        : x86_64
Version     : 1.0
Release     : 0.48.svn20100703.el6.rf
Size        : 4.0 M
Repo        : rpmforge
Summary     : MPlayer, the Movie Player  for  Linux
URL         : http: //mplayerhq .hu/
License     : GPL
Description : MPlayer is a multimedia player. It plays most video formats as well as DVDs.
             : Its big feature is the wide range of supported output drivers. There are also
             nice  antialiased shaded subtitles and OSD.
             :
             : On x86, additional Win32 binary codecs should be added to  /usr/lib64/codecs/ .
             :
             : Available rpmbuild rebuild options :
             : --with : dvdread
             : --without : aalib lirc cdparanoia arts xvid esd lzo fame caca dvb vstream
             :             theora osdmenu gcccheck fribidi xvmc x264 faac mpc live ladspa
             :             amrnb samba speex twolame


安装mplayer:

1
[root@localhost ~] # yum install mplayer


禁用RPMforge(Repoforge)源:

1
2
[root@localhost ~] # vi /etc/yum.repos.d/rpmforge.repo
将enabled=1选项改为enabled=0。



本文转自 f_066 51CTO博客,原文链接:http://blog.51cto.com/ganmu/1970783,如需转载请自行联系原作者
相关文章
|
7月前
|
Linux
CentOS6使用第三方YUM源(EPEL、RPMForge和RPMFusion)
CentOS6使用第三方YUM源(EPEL、RPMForge和RPMFusion)
|
安全 Linux 机器学习/深度学习
|
28天前
|
SQL 存储 Linux
从配置源到数据库初始化一步步教你在CentOS 7.9上安装SQL Server 2019
【11月更文挑战第16天】本文介绍了在 CentOS 7.9 上安装 SQL Server 2019 的详细步骤,包括配置系统源、安装 SQL Server 2019 软件包以及数据库初始化,确保 SQL Server 正常运行。
下一篇
DataWorks