linux系统更换网络YUM源

此方法在CentOS6.X版本上测试,其他版本下载对应的版本yum源。

#配置之前记得备份好原本的yum文件,避免配置错误难以找回#

网易64位 centos6 yum源

http://mirrors.163.com/.help/CentOS6-Base-163.repo

切换到/etc/yum.repos.d/目录下并查看:

[[email protected] ~]$ cd /etc/yum.repos.d/

[[email protected] yum.repos.d]# ll

总用量 24

-rw-r--r--. 1 root root 1991 8月   4 00:13 CentOS-Base.repo

-rw-r--r--. 1 root root  647 8月   4 00:13 CentOS-Debuginfo.repo

-rw-r--r--. 1 root root  289 8月   4 00:13 CentOS-fasttrack.repo

-rw-r--r--. 1 root root  630 8月   4 00:13 CentOS-Media.repo

-rw-r--r--. 1 root root 6259 8月   4 00:13 CentOS-Vault.repo

备份本地yum源:

[[email protected] yum.repos.d]# mv CentOS-Base.repo CentOS-Base.repo.ori

[[email protected] yum.repos.d]# ll

总用量 28

-rw-r--r--. 1 root root 2006 9月  18 2014 CentOS6-Base-163.repo

-rw-r--r--. 1 root root 1991 8月   4 00:13 CentOS-Base.repo.ori

-rw-r--r--. 1 root root  647 8月   4 00:13 CentOS-Debuginfo.repo

-rw-r--r--. 1 root root  289 8月   4 00:13 CentOS-fasttrack.repo

-rw-r--r--. 1 root root  630 8月   4 00:13 CentOS-Media.repo

-rw-r--r--. 1 root root 6259 8月   4 00:13 CentOS-Vault.repo

用wget命令在网易下载64位 centos6 yum源并查看结果:

[[email protected] yum.repos.d]# wget http://mirrors.163.com/.help/CentOS6-Base-163.repo

--2016-01-19 04:21:35--  http://mirrors.163.com/.help/CentOS6-Base-163.repo

正在解析主机 mirrors.163.com... 123.58.173.186, 123.58.173.185

正在连接 mirrors.163.com|123.58.173.186|:80... 已连接。

已发出 HTTP 请求,正在等待回应... 200 OK

长度:2006 (2.0K) [application/octet-stream]

正在保存至: “CentOS6-Base-163.repo”

100%[======================================>] 2,006       --.-K/s   in 0s

2016-01-19 04:21:35 (160 MB/s) - 已保存 “CentOS6-Base-163.repo” [2006/2006])

[[email protected] yum.repos.d]# ll

总用量 28

-rw-r--r--. 1 root root 2006 9月  18 2014 CentOS6-Base-163.repo

-rw-r--r--. 1 root root 1991 8月   4 00:13 CentOS-Base.repo.ori

-rw-r--r--. 1 root root  647 8月   4 00:13 CentOS-Debuginfo.repo

-rw-r--r--. 1 root root  289 8月   4 00:13 CentOS-fasttrack.repo

-rw-r--r--. 1 root root  630 8月   4 00:13 CentOS-Media.repo

-rw-r--r--. 1 root root 6259 8月   4 00:13 CentOS-Vault.repo

修改本地yum源镜像:

[[email protected] yum.repos.d]# mv CentOS6-Base-163.repo CentOS-Base.repo

[[email protected] yum.repos.d]# ll

总用量 28

-rw-r--r--. 1 root root 2006 9月  18 2014 CentOS-Base.repo     #修改后的网易yum源镜像

-rw-r--r--. 1 root root 1991 8月   4 00:13 CentOS-Base.repo.ori  #原国外Centos官网镜像

-rw-r--r--. 1 root root  647 8月   4 00:13 CentOS-Debuginfo.repo

-rw-r--r--. 1 root root  289 8月   4 00:13 CentOS-fasttrack.repo

-rw-r--r--. 1 root root  630 8月   4 00:13 CentOS-Media.repo

-rw-r--r--. 1 root root 6259 8月   4 00:13 CentOS-Vault.repo

导入KEY,并将软件升级:

[[email protected] yum.repos.d]# rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY*

[[email protected] yum.repos.d]# yum upgrade

查看安装好的包组:

[[email protected] yum.repos.d]# yum grouplist

时间: 2024-10-13 19:46:24

linux系统更换网络YUM源的相关文章

配置yum源1:更换网络yum源

更换网络yum源:以163 yum源为例,需要服务器能联网 [[email protected]]# mvCentOS-Base.repo CentOS-Base.repo.ori [[email protected]]# wgethttp://mirrors.163.com/.help/CentOS6-Base-163.repo wget下载网络文件 运行以下命令生成缓存 [[email protected]]# yum clean all [[email protected]]# yum m

linux系统搭建本地yum源以及搭建第3方软件仓库

搭建yum源与软件仓库 一.搭建本地yum源 yum是上层软件管理工具,可以解决软件的依赖关系,但是yum能使用的前提是必须要有yum源,以及配置源的指向文件. 1.配置镜像安装源 一般情况,我会把重要的文件保存在根目录下,这里将镜像导入根下的 1.配置镜像安装源 一般情况,我会把重要的文件保存在根目录下,这里将镜像导入根下的/iso,作为安装源. mkdir /iso 然后将镜像移动到此. 但是镜像里的软件,并不能被直接读出,这里就要借助挂载 如下显示说明挂载已经成功 2.配置文件 绝对路径:

Linux配置本地网络YUM源

配置环境: 系统版本: [[email protected] ~]# cat /etc/issue Red Hat Enterprise Linux Server release 5.8 (Tikanga) Kernel \r on an \m 系统32位: [[email protected] ~]# getconf LONG_BIT 32 YUM源服务器,IP:192.168.2.1 YUM客户端,IP:192.168.2.2 一.配置本地YUM源服务器: 挂在光盘: [[email pro

搭建网络yum源

#!/bin/bash #Linux搭建163网络yum源 cd /etc/yum.repos.d/ echo "-------------------下载163-repo--------------------" wget http://mirrors.163.com/.help/CentOS6-Base-163.repo 2&>/dev/null sed -i "s/\$releasever/6/g" /etc/yum.repos.d/CentOS

Linux Server release 7.3 更换阿里网络yum源

查看当前系统下的yum源 [[email protected] ~]# rpm -qa |grep yum yum-3.4.3-150.el7.noarch yum-utils-1.1.31-40.el7.noarch yum-langpacks-0.4.2-7.el7.noarch PackageKit-yum-1.0.7-6.el7.x86_64 yum-rhn-plugin-2.0.1-6.el7.noarch yum-metadata-parser-1.1.4-10.el7.x86_64

Linux 本地yum源搭建和网络yum源搭建

一.本地yum源搭建 首先挂载上光盘 [[email protected] /]# mount /dev/cdrom /media/cdrom/ 系统默认已经安装了可使用yum的软件包,所以可以直接配置: [[email protected] ~]# cd /etc/yum.repos.d/                        yum源配置文件放置目录 [[email protected] yum.repos.d]# mv CentOS-Base.repo CentOS-Base.re

[Linux] 024 IP 地址配置和网络 yum 源

1. IP 地址配置 (1) 使用 setup 工具 $ setup ps setup 是 RedHat 系列的功能:一般地,Debian系列没有这个功能 Xubuntu 没有这个功能 (2) 启动网卡 step1 $ vi /etc/sysconfig/network-scripts/ifcfg-eth0 step2 把 ONBOOT = "no" 改为 ONBOOT = "yes" step3 重启网络服务 $ service network restart p

Linux:网络yum源设置

网络yum源,最大的网易(163)算是一个,无论是速度还是软件版本,都非常的不错,将yum源设置为163yum,可以提升软件包安装和更新的速度,同时避免一些常见软件版本无法找到.具体设置方法如下: 1.进入yum源配置目录 [[email protected] ~]# cd /etc/yum.repos.d/ 2.备份系统自带的yum源 [[email protected] yum.repos.d]# mv CentOS-Base.repo CentOS-Base.repo.bk 下载163网易

更换Linux系统中的pip源

更换Linux系统中的pip源 命令如下: mkdir -p ~/.pip/ touch pip.conf vim pip.conf pip.conf编辑内容 [global] index-url=http://mirrors.aliyun.com/pypi/simple/ [install] trusted-host=mirrors.aliyun.com 原文地址:https://www.cnblogs.com/g15009428458/p/12323137.html