美文网首页Linux学习之路LinuxLinux
Linux中yum的安装方式简介

Linux中yum的安装方式简介

作者: 少帅yangjie | 来源:发表于2018-05-15 23:06 被阅读14次

    使用rpm安装最大的问题是依赖的问题,不管是安装还是卸载,都存在依赖安装的问题,所以在centos中提供了yum的方式来安装,这种方式第一种方案是基于网络的方式,只要通过yum install 命令就可以帮助我们完成这个软件的安装,会自动帮助开发人员安装软件包和依赖包,使用yum erase命令可以完成软件的删除。并且附带删除不使用的依赖包,使用yum update自动帮你完成更新操作,所有的安装都是自动的,目录也是自动的,可以通过rpm的方式来查询

    安装gcc,此时由于没有网络,需要将光盘设置为yum的源

            加载cdrom    (mount /dev/cdrom /mnt/cdrom)

            进入cdrom的Packages安装createrepo

            创建repo,此时由于光盘加载在/mnt/cdrom,所以需要/mnt的目录下创建

                createrepo .

            备份/etc/yum.repo.d/文件夹中的CentOS-Base.repo文件,修改CentOS-Media.repo文件  (cp CentOS-Base.repo bak_CentOS-Base )

             # CentOS-Media.repo

            #

            #  This repo can be used with mounted DVD media, verify the mount point for

            #  CentOS-7.  You can use this repo and yum to install items directly off the

            #  DVD ISO that we release.

            #

            # To use this repo, put in your DVD and use it with the other repos too:

            #  yum --enablerepo=c7-media [command]

            #  

            # or for ONLY the media repo, do this:

            #

            #  yum --disablerepo=\* --enablerepo=c7-media [command]

            [c7-media]

            name=CentOS-$releasever-Media

            baseurl=file:///mnt/##设置为mnt

            gpgcheck=1

            enabled=1##启动光盘的yum源

            gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7

    最后一步使用

            yum clean all 清空原有的缓存信息

            yum list 更新新的信息

            使用yum repolist 查询所有的工厂源

    相关文章

      网友评论

        本文标题:Linux中yum的安装方式简介

        本文链接:https://www.haomeiwen.com/subject/lehudftx.html