Chinaunix首页 | 论坛 | 博客
  • 博客访问: 949144
  • 博文数量: 481
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 5078
  • 用 户 组: 普通用户
  • 注册时间: 2018-03-07 14:48
个人简介

分享工作和学习中的点点滴滴,包括前端、后端、运维、产品等各个方面,欢迎您来关注订阅!

文章分类

全部博文(481)

文章存档

2023年(26)

2022年(97)

2021年(119)

2020年(153)

2019年(70)

2018年(16)

我的朋友

分类: LINUX

2020-06-03 20:23:44

本文档将教会大家快速配置yum源,这种方法很适合新创建的,特别是RHEL7系列的系统。
首先把系统镜像挂载过来:

快速配置yum本地源快速配置yum本地源

在右下角的光盘标志这里右键,然后点击连接,桌面就会出现镜像图标。
然后再执行创建的创建。

vim rhel7.repo.sh
#在打开的文件中添加以下内容:
#!/bin/bash

cd /etc/yum.repos.d

cat > rhel7.repo <> /etc/fstab

yum clean all
yum makecache

写完脚本后记得赋予脚本执行权限:
chmod 755 rhel7.repo.sh或者chmod +x rhel7.repo.sh
赋予脚本执行权限后再运行脚本:
bash rhel7.repo.sh 或者./rhel7.repo.sh
测试:
[root@localhost Desktop]# yum install -y httpd
Loaded plugins: langpacks, product-id, search-disabled-repos, subscription-manager
This system is not registered to Red Hat Subscription Management. You can use subscription-manager to register.
Resolving Dependencies
--> Running transaction check
---> Package httpd.x86_64 0:2.4.6-40.el7 will be installed
--> Finished Dependency Resolution

Dependencies Resolved

============================================================================================================
 Package                Arch                    Version                        Repository              Size
============================================================================================================
Installing:
 httpd                  x86_64                  2.4.6-40.el7                   rhel7                  1.2 M

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

Total download size: 1.2 M
Installed size: 3.7 M
Downloading packages:
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
  Installing : httpd-2.4.6-40.el7.x86_64                                                                1/1 
  Verifying  : httpd-2.4.6-40.el7.x86_64                                                                1/1 

Installed:
  httpd.x86_64 0:2.4.6-40.el7                                                                               

Complete!
总结

最后出现Complete!说明httpd安装成功,同时也说明了yum仓库配置成功!
注:我用的系统是RedHat7,用其他Linux系统的话只需要改yum仓库名称即可。

本文原创地址:编辑:传棋,审核员:逄增宝

阅读(732) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~