centos7桌面-镜像源

使用linux作为办公的操作系统,少不了安装各种各样的软件。

因为城墙的原因,所以安装好之后的第一件事就是设置好各种国内的镜像。

现将国内开源的镜像罗列如下,有需要的拿去。

国内的几个比较大的镜像:

清华大学镜像:https://mirror.tuna.tsinghua.edu.cn/

阿里云镜像:http://mirrors.aliyun.com/

网易镜像:http://mirrors.163.com/

搜狐镜像:http://mirrors.sohu.com/

华中科技大学镜像:http://mirror.hust.edu.cn/

兰州大学镜像:http://mirror.lzu.edu.cn/

北京交大镜像:http://mirror.bjtu.edu.cn/cn/

厦大镜像:http://mirrors.xmu.edu.cn/

上海交大镜像:http://ftp.sjtu.edu.cn/

中国科技大学镜像:http://mirrors.ustc.edu.cn/

ruby淘宝镜像:https://ruby.taobao.org/

gem国内镜像:https://ruby.taobao.org/

bundle源:https://ruby.taobao.org

gem sources --remove https://rubygems.org/

gem sources -a https://ruby.taobao.org/

gem sources -l

bundle config mirror.https://rubygems.org https://ruby.taobao.org

centos yum国内源: http://mirrors.aliyun.com/repo/Centos-6.repo

gitlab国内源:

https://mirror.tuna.tsinghua.edu.cn/gitlab-ce/

http://blog.chinaunix.net/uid-20771867-id-4814515.html

所有的镜像没有一个最全的,在使用时根据各应用来配置。

镜像多数是开源的,但国内的部分大学的镜像是靠捐助的,如中国科技大学镜像,如果有能力就多出份力。

时间: 2024-11-03 22:21:36

centos7桌面-镜像源的相关文章

CentOS7 设置软件镜像源

Linux拥有众多的发行版,每个发行版都有提供镜像,但是,在国内这些镜像的下载速度参差不齐,偶尔会有更新失败的情况. 网上众多推荐的镜像源为163的镜像,笔者通过一段时间的试用,发现某些小众带宽访问163镜像还是存在一定的问题,所以,决定替换为aliyun的镜像. 下面以修改 CentOS 默认安装源为 阿里云(http://mirrors.aliyun.com/repo/)为例进行说明: 1.备份 mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.re

centos7 本地yum源

使用光盘镜像作为软件yum源: [1]上传centos7光盘镜像到/usr/local/src目录下:(工具Xftp) [2]挂载系统文件 mkdir /media/cdrom   # 习惯用这个目录名称了: cd /usr/local/src ls CentOS-7.0-1406-x86_64-DVD.iso # mount -t iso9660 -o loop /usr/local/src/CentOS-7.0-1406-x86_64-DVD.iso /media/cdrom/ mount:

#openstack centos6 centos7 kvm镜像制作

#openstack centos6 centos7 kvm 镜像制作 openstack pike 集群高可用  安装部署 汇总 http://www.cnblogs.com/elvi/p/7613861.html #openstack centos6 centos7 镜像制作 #################################### #KVM环境 yum install -y kvm virt-* libvirt bridge-utils qemu-img qemu-kvm-

Linux系统下yum镜像源环境部署记录

之前介绍了Linux环境下本地yum源配置方法,不过这个是最简单最基础的配置,在yum安装的时候可能有些软件包不够齐全,下面说下完整yun镜像源系统环境部署记录(yum源更新脚本下载地址:https://pan.baidu.com/s/1miMNPgc     提取密码:hq6u): 1)安装nginx,用于yum镜像源访问配置 [[email protected] ~]# yum -y install gcc pcre-devel zlib-devel openssl-devel [[emai

centos7内网源站建设

centos7内网源站建设 1.部署环境: 系统:Centos7 x86_64 应用服务:nginx.createrepo.reposync 镜像源:https://mirrors.aliyun.com/repo/epel-7.repo 2.现在阿里云镜像源repo文件到本地: [root@localhost ~] wget -O /etc/yum.repos.d/epel.repo https://mirrors.aliyun.com/repo/epel-7.repo 3.安装nginx服务,

CentOS-7 本地yum源挂载

在Linux无法连接到互联网时,手动安装依赖是及其麻烦的一件事,需要花费大量的时间寻找rpm包.但在配置本地yum源后,绝决依赖问题就会变得非常简单. 一.准备 centos-7.ISO镜像文件: 二.本地yum源挂载. 加载镜像文件到虚拟机: 开启虚拟机,查看镜像文件是否挂载成功: 删除Centos7自带的yum仓库,在root用户下进行操作: 配置本地yum源,在当前目录下创建base.repo文件: [base] name=Base enabled=1 # 允许使用yum配置 baseur

Linux镜像源

1. 国内镜像源 (1.)备份原有镜像源文件 mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup (2.)编辑替换镜像源 vi /etc/yum.repos.d/CentOS-Base.repo 或者下载镜像源文件: wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo (3

centos7 安装yum源

centos7的服务器,没有yum,没有wget命令真的寸步难行,经过总结和查询,现在算搞定了,把经验总结一下,以免大家再浪费时间去找原因: 安装yum需要wget安装yum的rpm包,所以前提是先有wget,服务器上没有wget的包怎么办,就去国内的镜像源去找,我这里是找的网易163的,http://mirrors.163.com/centos/7/os/x86_64/Packages/ 需要什么从里面找到下载下来就好了,注意了,如果你看到别人的博客,给了一个例子,你去下载,发现包不存在,那就

修改Centos7的yum源

以下为修改Centos7的yum源: 1. 备份原镜像文件,便于后期恢复 [[email protected] ~]# mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup 2.下载新的CentOS-Base.repo 到/etc/yum.repos.d/ Centos6 阿里云yum源地址: wget -O /etc/yum.repos.d/CentOS-Base.repo http://mi