Linux RedHat 7 配置本地

尽管RPM安装方法能够帮助用户查询软件相关的依赖关系,但是还是需要安装人员自己来解决,而且有些大型软件可能与数十个程序都有依赖关系,在这种情况下安装软件事件非常痛苦和耗费事件的事情,而Yum软件仓库可以根据用户的要求分析出所需软件包及相互的依赖关系,然后自动从Yum源中下载、安装到系统中。

RedHat系统安装好后默认带有Yum,但是只对注册用户有效(收费),而且在无网络或者内网情况下,无法连接到网络,那么要方便快捷的安装软件包就需要在本地配置一个Yum源。

以使用ISO光盘为例配置本地Yum源

配置步骤:
1、安装好RedHat后,使用root账户登陆系统,
#将安装rhel7所使用的iso光盘挂载到/mnt目录下

1 [root@localhost ~]# mount -t iso9660 -o,loop /dev/sr0 /mnt

1 [root@localhost ~]# mount /dev/cdrom /mnt

#注意此处二选一即可(均为单次有效,重启失效)

 

2、进入/etc/yum.repos.d/目录下,创建rhel7.repo配置文件,并编辑此文件

1 2 3 [root@localhost ~]# cd /etc/yum.repos.d/ [root@localhost yum.repos.d]# touch rhel7.repo [root@localhost yum.repos.d]# vim rhel7.repo

  

3、rhel7.repo文件中的内容如下

1 2 3 4 5 6 [rehl7] name=rehl7     #自定义名称 baseurl=file:///mnt     #本地光盘挂载路径 enabled=1     #启用yum源,0为不启用,1为启用 gpgcheck=0     #检查GPG-KEY,0为不检查,1为检查 :wq     #保存退出

  

4、检查本地Yum源是否成功
#清除Yum源缓存

1 [root@localhost yum.repos.d]# yum clean all

#缓存本地Yum源

1 [root@localhost yum.repos.d]# yum makecache

#列出Yum软件列表

1 [root@localhost yum.repos.d]# yum list

本地配置成功!

 

附:常用Yum命令
yum repolist all       #列出所有仓库
yum list all        #列出仓库中所有软件包
yum info <软件包名>       #查看软件包信息
yum install <软件包名>        #安装软件包
yum reinstall <软件包名>      #重新安装软件包
yum update <软件包名>       #升级软件包
yum remove <软件包名>       #移除软件包
yum clean all       #清除所有仓库缓存
yum check-update       #检查可更新的软件包

http://www.hiago.cn
http://www.fioan.cn
http://www.faladoo.cn
http://www.llafestin.cn
http://www.grottoo.cn
http://www.mohanyimeihome.cn
http://market.szonline.net/amaz/11112.html
http://market.szonline.net/amaz/11111.html
http://market.szonline.net/amaz/11110.html
http://market.szonline.net/amaz/11109.html
http://market.szonline.net/amaz/11108.html
http://market.szonline.net/amaz/11107.html
http://market.szonline.net/amaz/11106.html
http://market.szonline.net/amaz/11104.html
http://market.szonline.net/amaz/11103.html
http://market.szonline.net/amaz/11102.html
http://market.szonline.net/amaz/11100.html
http://market.szonline.net/amaz/11099.html
http://market.szonline.net/amaz/11098.html

上一篇:Redhat配置静态IP


下一篇:1.redhat学习笔记,如何查看sshd服务开启