首页 > 系统相关 >Redhat7 yum 换源

Redhat7 yum 换源

时间:2023-03-28 20:55:38浏览次数:32  
标签:repo 缓存 配置文件 redhat Redhat7 etc yum 换源

//本次使用的版本为7.4,root账号
1.查看yum源信息:
yum repolist
2.安装base reop源
cd /etc/yum.repos.d
3.接着备份旧的配置文件
sudo mv redhat.repo redhat.repo.bak
4.下载阿里源的文件
sudo wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/Centos-7.repo
5.修改下载来的配置文件 $ releasever 替换为 7
  sed s/$ releasever/7/g Centos-7.rep
6.清理缓存
yum clean all
7.重新生成缓存
yum makecache
8.再次查看yum源信息
yum repolist
9.发现还是找不到源 查了下 redhat.repo 又被重新生成了
vim /etc/yum/pluginconf.d/subscription-manager.conf

  enabled=0 #改成0禁用


保存后再次生成缓存即可

 

标签:repo,缓存,配置文件,redhat,Redhat7,etc,yum,换源
From: https://www.cnblogs.com/guoyuan42/p/17266635.html

相关文章

  • yum卸载的时候要带上参数 "--nodeps"
    今天通告的一个误操作,说DBA在生产上yum安装了一个MySQL,后面又觉得版本不合适,直接yumremove了,导致服务故障异常。复盘是因为,yumremove的时候不单是把他安装的MySQL给卸载......
  • cento yum源
    wget-O/etc/yum.repos.d/CentOS-Base.repohttp://mirrors.aliyun.com/repo/Centos-5.repowget-O/etc/yum.repos.d/CentOS-Base.repohttp://mirrors.aliyun.com/repo......
  • centos7 yum -y install nodejs安装npm时报错,处理方法
     centos7yum-yinstallnodejs安装npm时报错,处理方法安装npm时报错,处理方法sudo:npm:commandnotfoundsudoyum-yinstallnodejsLoadedplugins:fastestmirr......
  • centos7 yum 安装nodejs 16,搭建编译vue项目环境
    1、安装nodejscurl-fsSLhttps://rpm.nodesource.com/setup_16.x|sudobash-sudoyuminstallnodejsnode-v2、安装yarn#安装yarnnpminstall-gyarn#查......
  • 详解 RHEL7.1 yum源配置与软件安装
    导读Yum(全称为YellowdogUpdater,Modified)是一个在Fedora和RedHat以及CentOS中的Shell前端软件包管理器。基于RPM包管理,能够从指定的服务器自动下载RPM包并且安装,可......
  • Centos7更换yum源
    备份系统自带yum源配置文件mv/etc/yum.repos.d/CentOS-Base.repo/etc/yum.repos.d/CentOS-Base.repo.backup下载国内yum源配置文件(这里我们下载163的yum源)wget-......
  • Linux中使用yum安装服务时会报:Existing lock /var/run/yum.pid: another copy is runn
    报错信息: 在下载服务时,不会显示正常的安装步骤,而是显示以上报错。 报错原因:1、是因为yum已经在后台运行了,导致进程僵死。 解决方法:1、把/var/run/yum.pid文件给......
  • yum 下载全量依赖 rpm 包及离线安装
    查看依赖包可以使用“yumdeplist”命令来查找rpm包的依赖列表。例如,要查找“ansible”rpm的依赖包:$yumdeplistansible软件包:ansible.noarch2.9.3-1.el7  依赖:/u......
  • linux 换源
    /etc/apt/sources.listsudoapt-getupdatesudoapt-getupgrade 中科大源debhttps://mirrors.ustc.edu.cn/ubuntu/focalmainrestricteduniversemultiversede......
  • linux centos yum 单独安装 mysqldump
    在linux下,mysqldump属于mysql的组件,可以安装mysql获取,如:$yum-yinstallmysql-client1一般情况下,是安装mysql的时候获得mysqldump组件,但有时可能已经安装Mar......