Linux系统之Centos安装epel源

简介: Linux系统之Centos安装epel源

一、检查本地系统环境

1.检查系统版本

[root@jeven ~]# cat /etc/os-release 
NAME="CentOS Linux"
VERSION="7 (Core)"
ID="centos"
ID_LIKE="rhel fedora"
VERSION_ID="7"
PRETTY_NAME="CentOS Linux 7 (Core)"
ANSI_COLOR="0;31"
CPE_NAME="cpe:/o:centos:centos:7"
HOME_URL="https://www.centos.org/"
BUG_REPORT_URL="https://bugs.centos.org/"

CENTOS_MANTISBT_PROJECT="CentOS-7"
CENTOS_MANTISBT_PROJECT_VERSION="7"
REDHAT_SUPPORT_PRODUCT="centos"
REDHAT_SUPPORT_PRODUCT_VERSION="7"

2.检查系统内核版本

[root@jeven ~]# uname -r
6.1.8-1.el7.elrepo.x86_64

二、检查yum仓库

1.查看repo文件

进入/etc/yum.repos.d目录下,查看系统所有的repo文件

[root@jeven yum.repos.d]# ll
total 12
-rw-r--r--. 1 root root 1759 Jan 28 21:02 CentOS-Base.repo
-rw-r--r--. 1 root root 2081 Jul 26  2022 docker-ce.repo
-rw-r--r--. 1 root root 1946 Jul 10  2022 elrepo.repo

2.检查yum仓库的状态

检查yum仓库的所有镜像源状态


[root@jeven yum.repos.d]# yum repolist all |grep enable
!base/7/x86_64                       CentOS-7 - Base - mirrors.a enabled: 10,072
!docker-ce-stable/7/x86_64           Docker CE Stable - x86_64   enabled:    198
!elrepo                              ELRepo.org Community Enterp enabled:    154
!extras/7/x86_64                     CentOS-7 - Extras - mirrors enabled:    515
!updates/7/x86_64                    CentOS-7 - Updates - mirror enabled:  4,691

三、安装epel源

1.查看系统epel-release.noarch包


[root@jeven yum.repos.d]# yum list all | grep epel-release.noarch
epel-release.noarch                      7-14                          epel

2.yum直接安装

可直接安装epel-release.noarch包,配置epel源。

[root@jeven yum.repos.d]# yum install -y epel-release
Loaded plugins: fastestmirror, langpacks
Loading mirror speeds from cached hostfile
 * elrepo: mirrors.tuna.tsinghua.edu.cn
Resolving Dependencies
--> Running transaction check
---> Package epel-release.noarch 0:7-11 will be installed
--> Finished Dependency Resolution

Dependencies Resolved

====================================================================================================================================================================
 Package                                     Arch                                  Version                              Repository                             Size
====================================================================================================================================================================
Installing:
 epel-release                                noarch                                7-11                                 extras                                 15 k

Transaction Summary
====================================================================================================================================================================
Install  1 Package

Total download size: 15 k
Installed size: 24 k
Downloading packages:
epel-release-7-11.noarch.rpm                                                                                                                 |  15 kB  00:00:00     
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
  Installing : epel-release-7-11.noarch                                                                                                                         1/1 
  Verifying  : epel-release-7-11.noarch                                                                                                                         1/1 

Installed:
  epel-release.noarch 0:7-11                                                                                                                                        

Complete!

3.检查epel源状态

  • 查看yum仓库的所有repo文件
[root@jeven yum.repos.d]# ll
total 20
-rw-r--r--. 1 root root 1759 Jan 28 21:02 CentOS-Base.repo
-rw-r--r--. 1 root root 2081 Jul 26  2022 docker-ce.repo
-rw-r--r--. 1 root root 1946 Jul 10  2022 elrepo.repo
-rw-r--r--. 1 root root  951 Oct  3  2017 epel.repo
-rw-r--r--. 1 root root 1050 Oct  3  2017 epel-testing.repo
  • 清理和重建yum缓存

yum -y clean all && yum makecache
  • 查看yum仓库状态
[root@jeven yum.repos.d]# yum repolist all |grep enable
base/7/x86_64                        CentOS-7 - Base - mirrors.a enabled: 10,072
docker-ce-stable/7/x86_64            Docker CE Stable - x86_64   enabled:    199
elrepo                               ELRepo.org Community Enterp enabled:    155
epel/x86_64                          Extra Packages for Enterpri enabled: 13,740
extras/7/x86_64                      CentOS-7 - Extras - mirrors enabled:    515
updates/7/x86_64                     CentOS-7 - Updates - mirror enabled:  4,691

4.查看epel.repo文件

[root@jeven yum.repos.d]# cat epel.repo 
[epel]
name=Extra Packages for Enterprise Linux 7 - $basearch
#baseurl=http://download.fedoraproject.org/pub/epel/7/$basearch
metalink=https://mirrors.fedoraproject.org/metalink?repo=epel-7&arch=$basearch
failovermethod=priority
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-7

[epel-debuginfo]
name=Extra Packages for Enterprise Linux 7 - $basearch - Debug
#baseurl=http://download.fedoraproject.org/pub/epel/7/$basearch/debug
metalink=https://mirrors.fedoraproject.org/metalink?repo=epel-debug-7&arch=$basearch
failovermethod=priority
enabled=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-7
gpgcheck=1

[epel-source]
name=Extra Packages for Enterprise Linux 7 - $basearch - Source
#baseurl=http://download.fedoraproject.org/pub/epel/7/SRPMS
metalink=https://mirrors.fedoraproject.org/metalink?repo=epel-source-7&arch=$basearch
failovermethod=priority
enabled=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-7
gpgcheck=1

四、使用第三方阿里的epel源

1.清空epel源

yum remove  -y epel-release

2.使用阿里的epel源

[root@jeven yum.repos.d]# wget -O /etc/yum.repos.d/epel.repo https://mirrors.aliyun.com/repo/epel-7.repo
--2023-02-01 15:09:07--  https://mirrors.aliyun.com/repo/epel-7.repo
Resolving mirrors.aliyun.com (mirrors.aliyun.com)... 123.6.21.248, 123.6.21.240, 123.6.21.244, ...
Connecting to mirrors.aliyun.com (mirrors.aliyun.com)|123.6.21.248|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 664 [application/octet-stream]
Saving to: ‘/etc/yum.repos.d/epel.repo’

100%[==========================================================================================================================>] 664         --.-K/s   in 0.007s  

2023-02-01 15:09:07 (90.0 KB/s) - ‘/etc/yum.repos.d/epel.repo’ saved [664/664]

3.查看epel源状态

[root@jeven yum.repos.d]# yum repolist all |grep epel
epel/x86_64                          Extra Packages for Enterpri enabled: 13,740
epel-debuginfo/x86_64                Extra Packages for Enterpri disabled
epel-source                          Extra Packages for Enterpri disabled

4.查看epel.repo文件

[root@jeven yum.repos.d]# cat epel.repo 
[epel]
name=Extra Packages for Enterprise Linux 7 - $basearch
baseurl=http://mirrors.aliyun.com/epel/7/$basearch
failovermethod=priority
enabled=1
gpgcheck=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-7

[epel-debuginfo]
name=Extra Packages for Enterprise Linux 7 - $basearch - Debug
baseurl=http://mirrors.aliyun.com/epel/7/$basearch/debug
failovermethod=priority
enabled=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-7
gpgcheck=0

[epel-source]
name=Extra Packages for Enterprise Linux 7 - $basearch - Source
baseurl=http://mirrors.aliyun.com/epel/7/SRPMS
failovermethod=priority
enabled=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-7
gpgcheck=0
[root@jeven yu

五、安装links工具

1.在epel仓库中安装links工具

[root@jeven yum.repos.d]# yum -y install links
Loaded plugins: fastestmirror, langpacks
Loading mirror speeds from cached hostfile
 * elrepo: mirrors.tuna.tsinghua.edu.cn
Resolving Dependencies
--> Running transaction check
---> Package links.x86_64 1:2.20.2-1.el7 will be installed
--> Finished Dependency Resolution

Dependencies Resolved

====================================================================================================================================================================
 Package                              Arch                                  Version                                       Repository                           Size
====================================================================================================================================================================
Installing:
 links                                x86_64                                1:2.20.2-1.el7                                epel                                2.9 M

Transaction Summary
====================================================================================================================================================================
Install  1 Package

Total download size: 2.9 M
Installed size: 4.4 M
Downloading packages:
links-2.20.2-1.el7.x86_64.rpm                                                                                                                | 2.9 MB  00:00:28     
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
  Installing : 1:links-2.20.2-1.el7.x86_64                                                                                                                      1/1 
  Verifying  : 1:links-2.20.2-1.el7.x86_64                                                                                                                      1/1 

Installed:
  links.x86_64 1:2.20.2-1.el7                                                                                                                                       

Complete!

2.使用links

inks -dump  https://www.baidu.com/
[root@jeven yum.repos.d]# links -dump  https://mirrors.aliyun.com/centos/
   Link: canonical
   [IMG]
   开源镜像站
   免费体验Linux沙箱实验室 全部镜像 域名解析DNS 网站授时NTP 反馈与建议
   阿里云镜像站> centos镜像配置页> centos镜像下载页> 详细内容

                               Index of /centos/

   File Name                     File Size Date             
   Parent directory/             -         -                
   2/                            -         2010-05-07 01:48 
   2.1/                          -         2009-09-09 13:18 
   3/                            -         2010-05-07 01:48 
   3.1/                          -         2010-05-07 01:48 
   3.3/                          -         2010-05-07 01:48 
   3.4/                          -         2010-05-07 01:48 
   3.5/                          -         2010-05-07 01:48 
   3.6/                          -         2010-05-07 01:48 
   3.7/                          -         2010-05-07 01:48 
   3.8/                          -         2010-05-07 01:48 
   3.9/                          -         2011-03-03 07:44 
   4/                            -         2012-03-13 08:24 
   4.0/                          -         2005-07-19 05:11 
   4.1/                          -         2005-10-22 01:54 
   4.2/                          -         2006-11-04 20:43 
   4.3/                          -         2006-11-11 06:15 
   4.4/                          -         2007-07-08 02:21 
   4.5/                          -         2008-01-11 00:12 
   4.6/                          -         2009-03-31 19:55 
   4.7/                          -         2010-03-08 18:56 
   4.8/                          -         2012-03-13 08:14 
   4.9/                          -         2017-04-03 19:34 
   5/                            -         2017-04-03 19:35 
   5.0/                          -         2014-10-16 21:37 
   5.1/                          -         2014-10-16 21:37 
   5.10/                         -         2017-04-03 19:30 
   5.11/                         -         2017-04-03 19:34 
   5.2/                          -         2014-10-16 21:37 
   5.3/                          -         2014-10-16 21:37 
   5.4/                          -         2014-10-16 21:37 
   5.5/                          -         2014-10-16 21:37 
   5.6/                          -         2014-10-16 21:37 
   5.7/                          -         2014-10-16 21:37 
   5.8/                          -         2014-10-16 21:37 
   5.9/                          -         2014-10-16 21:38 
   6/                            -         2018-07-04 01:21 
   6.0/                          -         2014-10-16 21:42 
   6.1/                          -         2014-10-16 21:42 
   6.10/                         -         2020-12-02 17:00 
   6.2/                          -         2014-10-16 21:42 
   6.3/                          -         2014-10-16 21:42 
   6.4/                          -         2014-10-16 21:42 
   6.5/                          -         2015-01-05 22:33 
   6.6/                          -         2015-08-12 20:23 
   6.7/                          -         2016-06-02 00:09 
   6.8/                          -         2017-06-12 20:38 
   6.9/                          -         2018-07-25 23:42 
   7/                            -         2020-11-12 20:29 
   7.0.1406/                     -         2015-04-07 22:24 
   7.1.1503/                     -         2016-01-08 23:25 
   7.2.1511/                     -         2017-01-28 22:29 
   7.3.1611/                     -         2017-10-25 22:57 
   7.4.1708/                     -         2018-05-24 21:25 
   7.5.1804/                     -         2019-01-05 00:00 
   7.6.1810/                     -         2019-09-25 17:47 
   7.7.1908/                     -         2020-05-05 00:25 
   7.8.2003/                     -         2020-11-17 15:28 
   7.9.2009/                     -         2021-01-18 22:12 
   8/                            -         2021-11-16 20:47 
   8-stream/                     -         2023-01-26 15:44 
   8.0.1905/                     -         2020-10-21 15:52 
   8.1.1911/                     -         2020-10-21 15:53 
   8.2.2004/                     -         2020-12-22 23:27 
   8.3.2011/                     -         2021-09-08 14:57 
   8.4.2105/                     -         2021-11-17 15:29 
   8.5.2111/                     -         2021-12-22 08:53 
   HEADER.html                   1.2 KB    2014-09-30 03:27 
   HEADER.images/                -         2013-11-07 23:21 
   RPM-GPG-KEY-CentOS-3          1.8 KB    2004-03-16 07:16 
   RPM-GPG-KEY-CentOS-4          1.8 KB    2010-05-07 01:48 
   RPM-GPG-KEY-CentOS-5          1.5 KB    2007-02-20 01:57 
   RPM-GPG-KEY-CentOS-6          1.7 KB    2011-07-10 22:28 
   RPM-GPG-KEY-CentOS-7          1.7 KB    2014-07-05 00:01 
   RPM-GPG-KEY-CentOS-Debug-6    1.7 KB    2011-07-10 22:28 
   RPM-GPG-KEY-CentOS-Debug-7    1004.0 B  2015-12-09 17:59 
   RPM-GPG-KEY-CentOS-Official   1.6 KB    2019-09-12 15:39 
   RPM-GPG-KEY-CentOS-Security-6 1.7 KB    2011-07-10 22:28 
   RPM-GPG-KEY-CentOS-Testing-6  1.7 KB    2011-07-10 22:28 
   RPM-GPG-KEY-CentOS-Testing-7  1.7 KB    2015-12-09 17:59 
   RPM-GPG-KEY-beta              1.5 KB    2007-02-20 01:56 
   RPM-GPG-KEY-centos4           1.8 KB    2005-02-27 01:51 
   TIME                          11.0 B    2023-02-01 12:55 
   build/                        -         2005-06-12 20:56 
   dir_sizes                     1.1 KB    2023-02-01 12:10 
   dostools/                     -         2007-04-04 17:45 
   filelist.gz                   7.2 MB    2023-02-01 12:10 
   graphics/                     -         2014-06-12 19:59 
   timestamp.txt                 29.0 B    2023-02-01 12:55 

   镜像源配置帮助 立即查看
   下载排行榜
   最热
   最新
   1 centos镜像源
   2 ubuntu镜像源
   3 pypi镜像源
   4 alinux镜像源
   5 epel镜像源
   6 debian镜像源
   7 fedora镜像源
   8 opensuse镜像源
   9 kali镜像源
   10 rockylinux镜像源
   1 almalinux镜像源
   2 calculate-linux镜像源
   3 blender镜像源
   4 grafana镜像源
   5 centos-debuginfo镜像源
   6 oceanbase镜像源
   7 circlelinux镜像源
   8 termux镜像源
   9 centos-stream镜像源
   10 libreoffice镜像源
   大家都在搜
   archlinux镜像源
   xbmc镜像源
   rubygems镜像源
   mariadb镜像源
   alpine镜像源
   elrepo镜像源
   pypi镜像源
   clfs镜像源
   deepin镜像源
   centos-debuginfo镜像源
相关实践学习
CentOS 7迁移Anolis OS 7
龙蜥操作系统Anolis OS的体验。Anolis OS 7生态上和依赖管理上保持跟CentOS 7.x兼容,一键式迁移脚本centos2anolis.py。本文为您介绍如何通过AOMS迁移工具实现CentOS 7.x到Anolis OS 7的迁移。
相关文章
|
16天前
|
Linux
在 Linux 系统中,“cd”命令用于切换当前工作目录
在 Linux 系统中,“cd”命令用于切换当前工作目录。本文详细介绍了“cd”命令的基本用法和常见技巧,包括使用“.”、“..”、“~”、绝对路径和相对路径,以及快速切换到上一次工作目录等。此外,还探讨了高级技巧,如使用通配符、结合其他命令、在脚本中使用,以及实际应用案例,帮助读者提高工作效率。
57 3
|
16天前
|
监控 安全 Linux
在 Linux 系统中,网络管理是重要任务。本文介绍了常用的网络命令及其适用场景
在 Linux 系统中,网络管理是重要任务。本文介绍了常用的网络命令及其适用场景,包括 ping(测试连通性)、traceroute(跟踪路由路径)、netstat(显示网络连接信息)、nmap(网络扫描)、ifconfig 和 ip(网络接口配置)。掌握这些命令有助于高效诊断和解决网络问题,保障网络稳定运行。
48 2
|
10天前
|
Ubuntu Linux 网络安全
linux系统ubuntu中在命令行中打开图形界面的文件夹
在Ubuntu系统中,通过命令行打开图形界面的文件夹是一个高效且实用的操作。无论是使用Nautilus、Dolphin还是Thunar,都可以根据具体桌面环境选择合适的文件管理器。通过上述命令和方法,可以简化日常工作,提高效率。同时,解决权限问题和图形界面问题也能确保操作的顺利进行。掌握这些技巧,可以使Linux操作更加便捷和灵活。
15 3
|
16天前
|
安全 网络协议 Linux
本文详细介绍了 Linux 系统中 ping 命令的使用方法和技巧,涵盖基本用法、高级用法、实际应用案例及注意事项。
本文详细介绍了 Linux 系统中 ping 命令的使用方法和技巧,涵盖基本用法、高级用法、实际应用案例及注意事项。通过掌握 ping 命令,读者可以轻松测试网络连通性、诊断网络问题并提升网络管理能力。
53 3
|
19天前
|
安全 Linux 数据安全/隐私保护
在 Linux 系统中,查找文件所有者是系统管理和安全审计的重要技能。
在 Linux 系统中,查找文件所有者是系统管理和安全审计的重要技能。本文介绍了使用 `ls -l` 和 `stat` 命令查找文件所有者的基本方法,以及通过文件路径、通配符和结合其他命令的高级技巧。还提供了实际案例分析和注意事项,帮助读者更好地掌握这一操作。
37 6
|
16天前
|
存储 缓存 Linux
【Linux】另一种基于rpm安装yum的方式
通过本文的方法,您可以在离线环境中使用RPM包安装YUM并进行必要的配置。这种方法适用于无法直接访问互联网的服务器或需要严格控制软件源的环境。通过配置本地YUM仓库,确保了软件包的安装和更新可以顺利进行。希望本文能够为您在特定环境中部署YUM提供实用的指导。
104 0
|
Linux
百度搜索:蓝易云 ,Centos7系统wget 的安装与使用详细教程。
以上是在CentOS 7系统上安装和使用wget的详细教程。确保按照步骤操作,并根据您的需求进行必要的修改和调整。
184 0
|
关系型数据库 MySQL Linux
百度搜索:蓝易云【Centos7系统如何安装MySQL5.7数据库?】
安装 MySQL 5.7 数据库需要进行以下步骤:
121 0
|
7月前
|
关系型数据库 Linux Shell
Centos系统上安装PostgreSQL和常用PostgreSQL功能
Centos系统上安装PostgreSQL和常用PostgreSQL功能
|
Shell Linux Python
centos7系统 shell脚本安装python3 各版本
centos7系统 shell脚本安装python3 各版本
277 0