由于系统刚安装的时候无法识别 ntfs 格式的 U
盘,还是放到网络上会比较好找一点,同时也顺带整理了其他环境所需要的镜像
CentOS
首先执行
{sh}sudo find /etc/yum.repos.d/ -name "*.bak" -exec mv {} {}.bak \;
来备份原有的安装源文件,而后针对对应的系统执行下方命令获取对应镜像源
title:"centos8"1 2
| curl -o /etc/yum.repos.d/Centos-vault-8.5.2111.repo https://mirrors.aliyun.com/repo/Centos-vault-8.5.2111.repo curl -o /etc/yum.repos.d/epel-archive-8.repo https://mirrors.aliyun.com/repo/epel-archive-8.repo
|
title:"centos7"1
| curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
|
再执行 {sh}sudo yum clean all && yum makecache
之后就可以下载自己需要的安装包了
在 Ubuntu 24.04 之前,Ubuntu 的软件源配置文件使用传统的
One-Line-Style,路径为 /etc/apt/sources.list
;从 Ubuntu
24.04 开始,Ubuntu 的软件源配置文件变更为 DEB822 格式,路径为
/etc/apt/sources.list.d/ubuntu.sources
,各自对应命令如下:
- 传统模式
1 2 3 4
| sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak
sed -i 's|http://archive.ubuntu.com/ubuntu|http://mirrors.aliyun.com/ubuntu|g' /etc/apt/sources.list
|
- DEB822 格式
1 2 3 4 5
| sudo cp /etc/apt/sources.list.d/ubuntu.sources /etc/apt/sources.list.d/ubuntu.sources.bak
sed -i 's|http://archive.ubuntu.com/ubuntu|http://mirrors.aliyun.com/ubuntu|g' /etc/apt/sources.list.d/ubuntu.sources \ && sed -i 's|http://security.ubuntu.com/ubuntu|http://mirrors.aliyun.com/ubuntu|g' /etc/apt/sources.list.d/ubuntu.sources
|
NPM