RHEL7 本地yum源配置

 2023-09-10 阅读 21 评论 0

摘要:配置yum 源 1、挂载DVD光盘到/mnt因为配置时候路径名里面不能有空格,否则不能识别 [root@ mnt]# mount /dev/cdrom /mnt 2、在目录/etc/yum.repos.d/创建文件文件名.repo 3、配置本地yum源 cd/etc/yum.repos.d/#进入yum配置目录 redhat配置yum源、touch rhel7.repo#建立y

配置yum 源

1、挂载DVD光盘到/mnt   因为配置时候路径名里面不能有空格,否则不能识别  [root@ mnt]# mount /dev/cdrom /mnt  

2、在目录/etc/yum.repos.d/创建文件文件名.repo 

3、配置本地yum源

cd /etc/yum.repos.d/   #进入yum配置目录 

redhat配置yum源、touch  rhel7.repo   #建立yum配置文件 

vim  rhel7.repo   #编辑配置文件,添加以下内容 

[rhel-yum]

name=rhel7   #自定义名称 

baseurl=file:///mnt#本地光盘挂载路径 

enabled=1   #启用yum源,0为不启用,1为启用 

centos如何配置yum源?gpgcheck=0  #检查GPG-KEY,0为不检查,1为检查 

:wq! #保存退出 

4、、测试使用yum命令自动安装软件

yum clean all   #清除yum缓存 

yum makecache  #缓存本地yum源中的软件包信息

linux7配置本地yum源,

yum install httpd   #安装apache 

rpm -ql httpd  #查询所有安装httpd的目录和文件 

systemctl start httpd.service  #启动apache 

systemctl stop httpd.service  #停止apache 

linux配置yum源,systemctl restart httpd.service  #重启apache 

systemctl enable httpd.service  #设置开机启动 

RHEL 7.0默认使用的是firewall作为防火墙,这里改为iptables防火墙。

5、通过yum安装GUI图形界面# yum -y groupinstall "Server with GUI"可以执行startx看下效果。

      通过yum卸载软件 yum -y remove httpd(移除httpd软件)

转载于:https://www.cnblogs.com/love3556/p/5899534.html

版权声明:本站所有资料均为网友推荐收集整理而来,仅供学习和研究交流使用。

原文链接:https://hbdhgg.com/3/37627.html

发表评论:

本站为非赢利网站,部分文章来源或改编自互联网及其他公众平台,主要目的在于分享信息,版权归原作者所有,内容仅供读者参考,如有侵权请联系我们删除!

Copyright © 2022 匯編語言學習筆記 Inc. 保留所有权利。

底部版权信息