手动换源
手动换源
1.查看自己的源
#在Debian/Ubuntu系列中,查看软件源列表:
cat /etc/apt/sources.list
#在CentOS/RHEL系列中,列出所有仓库配置文件:
ls /etc/yum.repos.d/
2.换源
- 源文件
在Debian/Ubuntu
系列中,换源也就是要修改/etc/apt/sources.list
文件,代码如下(:
vi /etc/apt/sources.list
在CentOS/RHEL
系列中,换源则需要修改/etc/yum.repos.d/CentOS-Base.repo
文件,代码如下(:
vi /etc/yum.repos.d/CentOS-Base.repo
换源
- 我这里用的是Ubuntu发行版,演示换成阿里源的操作,在https://developer.aliyun.com/mirror/ubuntu中选择适配自己的发行版,然后将换源代码粘贴到了sources.list文件。之后保存即可。
- 其中deb 是二进制软件包的源。deb-src是源代码软件包的源。bionic为Ubuntu的版本代号。main、 restricted、universe、 multiverse这些是软件仓库的组件,每个组件包含不同类型的软件包。这些都需要粘贴上。
deb http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse
#备用
deb http://deb.debian.org/debian/ bullseye main
deb-src http://deb.debian.org/debian/ bullseye main
deb http://security.debian.org/debian-security bullseye-security main
deb-src http://security.debian.org/debian-security bullseye-security main
deb http://deb.debian.org/debian/ bullseye-updates main
deb-src http://deb.debian.org/debian/ bullseye-updates main
引用文字:https://blog.csdn.net/weixin_41544435/article/details/134516927
一键换源
国内vps安装好linux系统后(centos,debian,ubuntu等),除了deepin以外,其他Linux发行版从官方源下载东西都很慢,这个时候,我们就需要给自己的系统换一个镜像源了,使用镜像源不仅可以给官方源的服务器减压,还能提供更快的速度。这也是为啥,我们总需要换源的原因!!
当然,换源不麻烦,国内源可供选择的也很多,比如说,阿里云,腾讯云,华为云等等。但是不管如何,还是使用脚本来换源比较省心省力。这篇文章就来推荐一个一键脚本换源的方法!!
1、项目
- 1)地址:https://github.com/SuperManito/LinuxMirrors
- 2)已适配的 GNU/Linux 发行版
Debian | Ubuntu | Kali Linux | RHEL | CentOS | Fedora |
8.0 ~ 11.0 | 16.04 ~ 21.04 | 2.0 ~ 2021.2 | 7.0 ~ 8.4 | 7.0 ~ 8.4 | 28 ~ 34 |
目前仅支持上述基于Debian
与Redhat
系的发行版和及其部分衍生版本,同样支持上述版本中拥有相同底层核心的其它发行版,例如Armbian
Kubuntu
Oracle Linux
等
注意,理论支持所有架构的环境,arm64
环境已经过测试!!
2、脚本当前使用的开源镜像站
序号 | 镜像站名称 | 镜像站地址 | IPv6 | Kali Linux | Fedora | EPEL |
---|---|---|---|---|---|---|
1 | 阿里云 | mirrors.aliyun.com | √ | √ | √ | √ |
2 | 腾讯云 | mirrors.cloud.tencent.com | √ | √ | √ | √ |
3 | 华为云 | mirrors.huaweicloud.com | √ | √ | √ | √ |
••• | ••• | ••• | ••• | ••• | ••• | ••• |
注意,所有镜像站均支持 Debian Ubuntu CentOS 软件源,建议优先选择由企业提供的软件源
如果使用过程中脚本不能正常输出中文内容则可对照此列表使用,顺序与脚本一致!
3、脚本部署
1)一键更换国内软件源脚本(请通过 SSH客户端工具 使用)
bash <(curl -sSL https://gitee.com/SuperManito/LinuxMirrors/raw/main/ChangeMirrors.sh)
- 注意:
- Debian 系 Linux 默认注释了源码仓库和预发布软件源,若需启用可将 list 源文件中相关内容的所在行
取消注释
。 - RedHat 系 Linux 配置了所有可以配置的仓库,但有一些仓库默认没有启用,若需启用可将 repo 源文件中的
enabled=0
修改成enabled=1
。
- 2)安装过程,可以选择自己喜欢的源!
国内机器docker
4、Docker 一键安装脚本
1)Docker 一键安装脚本如下:
bash <(curl -sSL https://gitee.com/SuperManito/LinuxMirrors/raw/main/DockerInstallation.sh)
- Docker CE:Docker Community Edition 镜像仓库,用于下载并安装 Docker 相关软件包。
- Docker Hub:Docker Hub 镜像仓库,默认为官方提供的公共库,用于切换下载镜像时的来源仓库,简称镜像加速器。
- 注意:脚本集成安装
Docker Engine
与Docker Compose
,可手动选择安装版本和下载源,还可手动选择镜像加速器,支持国内外服务器环境和 ARM架构处理器环境使用。
5、最后
1)如果提示
Command 'curl' not found
则说明当前未安装curl
软件包,安装命令如下:sudo apt install -y curl 或 sudo yum install -y curl
2)如果提示
Command 'wget' not found
则说明当前未安装wget
软件包,安装命令如下:sudo apt install -y wget 或 sudo yum install -y wget
如果提示 bash: /proc/self/fd/11: No such file or directory
,请切换至 Root 用户执行。
引用:https://cnboy.org/1248