This commit is contained in:
Super Manito
2022-01-01 04:47:37 +08:00
parent 4c6a600067
commit b3937ce664
34 changed files with 382 additions and 28 deletions

View File

@@ -1,54 +1,42 @@
# LinuxMirrors
<a href="https://github.com/SuperManito/LinuxMirrors"><img src="./icon/github-1.svg" width="34" height="42"></a>
<a href="https://github.com/SuperManito/LinuxMirrors"><img src="./icon/github-2.svg" width="70" height="52"></a>
<a href="https://gitee.com/SuperManito/LinuxMirrors"><img src="./icon/gitee.svg" width="100" height="50"/></a>
&nbsp;<a href="https://blog.csdn.net/u013246692/article/details/113124295"><img src="./icon/csdn.png" width="100" height="50"/></a>
# [LinuxMirrors](./img/logo.png)
<a href="https://github.com/SuperManito/LinuxMirrors"><img src="./img/icon/github-1.svg" width="34" height="42"></a>
&nbsp;<a href="https://github.com/SuperManito/LinuxMirrors"><img src="./img/icon/github-2.svg" width="70" height="52"></a>
&nbsp;&nbsp;&nbsp;<a href="https://gitee.com/SuperManito/LinuxMirrors"><img src="./img/icon/gitee.svg" width="100" height="50"/></a>
- __`GNU/Linux` 一键更换国内软件源脚本__
- __本项目旨在为从事计算机相关行业的朋友们提供便利__
- __理论支持所有架构的环境`arm64` 环境已经过测试__
> 🏷️点击上方图标可快速跳转至本项目所发布在的其它仓库或博客
### 更新日志
- __2021 / 06 / 05__
ㅤ新增对于 Red Hat Enterprise Linux 的全面适配。
- __2021 / 05 / 30__
ㅤ新增选择软件源的 WEB 协议功能,修复了一些错误。
- __2021 / 05 / 05__
ㅤ新增关闭防火墙功能。
- __2021 / 04 / 24__
ㅤ新增基于 CentOS 的添加 EPEL 扩展源功能,修复了一些错误。
- __2021 / 04 / 22__
ㅤ重新定义了备份原有源功能,可以通过检测判断是否执行覆盖备份操作。
***
### 已适配的 GNU/Linux 发行版 <img src="./icon/linux.svg" width="16" height="16" alt="Linux Logo"/>
### 已适配的 GNU/Linux 发行版 <img src="./img/icon/linux.svg" width="16" height="16" alt="Linux Logo"/>
<table>
<tr>
<td rowspan="7"> 支持<br/>版本<br/>
</tr>
<tr>
<td><a href="https://www.debian.org"><img src="./icon/debian.svg" width="16" height="16"/></a>&nbsp;Debian</td>
<td align="center">8.0 ~ 11.1</td>
<td><a href="https://www.debian.org"><img src="../img/icon/debian.svg" width="16" height="16"/></a>&nbsp;Debian</td>
<td align="center">8.0 ~ 11.2</td>
</tr>
<tr>
<td><a href="https://cn.ubuntu.com"><img src="./icon/ubuntu.svg" width="16" height="16"/></a>&nbsp;Ubuntu</td>
<td><a href="https://cn.ubuntu.com"><img src="../img/icon/ubuntu.svg" width="16" height="16"/></a>&nbsp;Ubuntu</td>
<td align="center">16.04 ~ 21.10</td>
</tr>
<tr>
<td><a href="https://www.kali.org"><img src="./icon/kali.svg" width="16" height="16"/></a>&nbsp;Kali Linux</td>
<td><a href="https://www.kali.org"><img src="../img/icon/kali.svg" width="16" height="16"/></a>&nbsp;Kali Linux</td>
<td align="center">2.0 ~ 2021.4</td>
</tr>
<tr>
<td><a href="https://access.redhat.com/products/red-hat-enterprise-linux"><img src="./icon/redhat.svg" width="16" height="16"/></a>&nbsp;RHEL</td>
<td><a href="https://access.redhat.com/products/red-hat-enterprise-linux"><img src="../img/icon/redhat.svg" width="16" height="16"/></a>&nbsp;Red Hat Enterprise Linux</td>
<td align="center">7.0 ~ 8.5</td>
</tr>
<tr>
<td><a href="https://www.centos.org"><img src="./icon/centos.svg" width="16" height="16"/></a>&nbsp;CentOS</td>
<td><a href="https://www.centos.org"><img src="../img/icon/centos.svg" width="16" height="16"/></a>&nbsp;CentOS</td>
<td align="center">7.0 ~ 8.5</td>
</tr>
<tr>
<td><a href="https://getfedora.org/zh_Hans_CN"><img src="./icon/fedora.ico" width="16" height="16"/></a>&nbsp;Fedora</td>
<td><a href="https://getfedora.org/zh_Hans_CN"><img src="../img/icon/fedora.ico" width="16" height="16"/></a>&nbsp;Fedora</td>
<td align="center">28 ~ 35</td>
</tr>
</table>
@@ -117,15 +105,15 @@
***
### 常见问题与帮助
- 1. 如果提示 `Command 'curl' not found` 则说明当前未安装 `curl` 软件包,安装命令如下:
- 如果提示 `Command 'curl' not found` 则说明当前未安装 `curl` 软件包
sudo apt install -y curl 或 sudo yum install -y curl
- 2. 如果提示 `Command 'wget' not found` 则说明当前未安装 `wget` 软件包,安装命令如下:
- 如果提示 `Command 'wget' not found` 则说明当前未安装 `wget` 软件包
sudo apt install -y wget 或 sudo yum install -y wget
- 3. 如果提示 `bash: /proc/self/fd/11: No such file or directory`,请切换至 `Root` 用户执行。
- 如果提示 `bash: /proc/self/fd/11: No such file or directory`,请切换至 `Root` 用户执行。
***