zoukankan      html  css  js  c++  java
  • RedHat7 yum的配置

    配置yum 源

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

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

    3、配置本地yum源

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

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

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

    1
    2
    3
    4
    5
    6
    7
    8
    9
    [rhel-yum]
     
    name=rhel7
     
    baseurl=file:///mnt
     
    enabled=1
     
    gpgcheck=0

    其中:

    name=rhel7    #自定义名称 

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

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

    gpgcheck=0    #检查GPG-KEY,0为不检查,1为检查 

    :wq! #保存退出 

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

    yum clean all   #清除yum缓存 

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

  • 相关阅读:
    oracle锁分类
    oracle中decode函数
    oracle分区
    oracle处理字符串
    oracle索引分类
    oracle表连接
    oracle处理字符串
    oracle分区
    木马中如何编程实现远程关机
    木马中如何编程实现远程关机
  • 原文地址:https://www.cnblogs.com/assassin3154/p/7922845.html
Copyright © 2011-2022 走看看