×

阿里云centos镜像下载 添加

阿里云centos镜像下载(如何给CentOS添加镜像源)

admin admin 发表于2022-09-06 21:03:25 浏览149 评论0

抢沙发发表评论

本文目录

如何给CentOS添加镜像源


下面以修改 CentOS 默认安装源为 阿里云为例进行说明:
1、备份
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
2、配置软件源
下载新的CentOS-Base.repo 到/etc/yum.repos.d/
CentOS 5
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-5.repo
CentOS 6
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo
3、生成缓存
yum makecache

Centos镜像有一大堆不知道怎么下载不用DVD


一大堆压缩包,并且压缩包文件名相似,这些是压缩分卷,是由于游戏文件体积庞大,将其分散成体积较小文件数量较多的方式便于互联网上的上传及下载,也避免了下载时出现错误的风险 使用方法是解压其中一个压缩包就可以完成解压(通常都是解压第一个),解压出来如果是光盘镜像文件则需要用到虚拟光驱软件(推荐Daemon-Tools)来加载该光盘镜像,犹如插入一张虚拟的光盘,在我的电脑中可看到那个虚拟的光驱,安装完成后,一般在光盘镜像里还有破解需要的补丁,或者叫免DVD补丁,具体情况还要仔细阅读游戏的安装说明 如果解压出来就是游戏文件,那么这就是绿色硬盘版游戏,直接运行游戏执行文件就可以游戏了

阿里云的centos7镜像怎么用


方法/步骤首先登陆阿里云账号之后,找到我们控制中心里面,找到服务器管理控制台。特别提醒在更换系统盘之前,要做好数据备份。然后停止服务器当服务器运行停止之后,点击配置信息里面的“更换系统盘”如图随后会提醒您更换ECS服务器系统盘的影响,如果没有数据。点击确定更换操作系统盘然后再次选择确认新的操作系统类型,或者镜像系统确定好之后,系统会再次提醒您是否更换。点击确定继续再次回到刚刚的与主机界面你会发现,系统配置信息由linux变成windows了,正在切换等待片刻之后,可能要几分钟。阿里云服务器的系统就自动切换过去了咗嚛再次提醒在更换系统盘之前,要做好数据备份。然后停止服务器,再进行切换。
-阿里云centos镜像下载

求centos5.5的ISO镜像的下载地址


官网下吧:
32位的:
http://vault.centos.org/5.5/isos/i386/CentOS-5.5-i386-bin-DVD.torrent
64位的:
http://vault.centos.org/5.5/isos/x86_64/CentOS-5.5-x86_64-bin-DVD.torrent
-添加

阿里云开源软件镜像站点上线 大器晚成否


近日,阿里云增设了linux开源软件镜像站点( 镜像地址:

Centos 5.7 64位

1. 进入/etc/yum.repos.d/ 备份老的配置文件
cd /etc/yum.repos.d/ && mkdir -p back && mv *.repo back
2.下载配置
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-5.repo
如果是阿里云服务器可以把域名替换成内网域名,这样访问源的时候不占有公网带宽
sed -i ’s/aliyun.com/aliyuncs.com/’ /etc/yum.repos.d/CentOS-Base.repo

3. 更新索引
yum clean all && yum makecache

4. 使用yum安装软件,以安装apache为例:

yum search httpd
yum install httpd -y
参考: http://mirrors.aliyun.com/help/centos

Centos 6.3 64位

1. 进入/etc/yum.repos.d/ 备份老的配置文件
cd /etc/yum.repos.d/ && mkdir -p back && mv *.repo back

2.下载配置
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo
如果是阿里云服务器可以把域名替换成内网域名,这样访问源的时候不占有公网带宽
sed -i ’s/aliyun.com/aliyuncs.com/’ /etc/yum.repos.d/CentOS-Base.repo

3. 更新索引
yum clean all && yum makecache

4. 使用yum安装软件,以安装apache为例:

yum search httpd
yum install httpd -y

参考: http://mirrors.aliyun.com/help/centos
Ubuntu 12.04

1. 使用vim 编辑/etc/apt/sources.list
删除原有配置,新增如下配
deb http://mirrors.aliyuncs.com/ubuntu precise main restricted universe multiverse
deb http://mirrors.aliyuncs.com/ubuntu precise-security main restricted universe multiverse
deb http://mirrors.aliyuncs.com/ubuntu precise-updates main restricted universe multiverse
deb http://mirrors.aliyuncs.com/ubuntu precise-proposed main restricted universe multiverse
deb http://mirrors.aliyuncs.com/ubuntu precise-backports main restricted universe multiverse
deb-src http://mirrors.aliyuncs.com/ubuntu precise main restricted universe multiverse
deb-src http://mirrors.aliyuncs.com/ubuntu precise-security main restricted universe multiverse
deb-src http://mirrors.aliyuncs.com/ubuntu precise-updates main restricted universe multiverse
deb-src http://mirrors.aliyuncs.com/ubuntu precise-proposed main restricted universe multiverse
deb-src http://mirrors.aliyuncs.com/ubuntu precise-backports main restricted universe multiverse

2.apt使用
2.1 apt-get update #更新索引
2.2 apt-cache search nginx #搜索关键字还有nginx的包
2.3 apt-get install nginx #安装nginx
参考:http://mirrors.aliyun.com/help/ubuntu

debian 6.0.6

1. 使用vim 编辑/etc/apt/sources.list

删除原有配置,新增如下配
deb http://mirrors.aliyuncs.com/debian/ squeeze main non-free contrib
deb http://mirrors.aliyuncs.com/debian/ squeeze-proposed-updates main non-free contrib
deb-src http://mirrors.aliyuncs.com/debian/ squeeze main non-free contrib
deb-src http://mirrors.aliyuncs.com/debian/ squeeze-proposed-updates main non-free contrib

2.apt使用
2.1 apt-get update #更新索引
2.2 apt-cache search nginx #搜索关键字还有nginx的包
2.3 apt-get install nginx #安装nginx
-阿里云centos镜像下载

CentOS 5.3 中文镜像 BT下载


http://vault.centos.org/5.3/isos/i386/CentOS-5.3-i386-bin-DVD.torrent 这是32位的BT下载
http://vault.centos.org/5.3/isos/x86_64/CentOS-5.3-x86_64-bin-DVD.torrent 这是64位的BT下载
-添加