一键更换系统镜像源脚本工具

查看 94|回复 9
作者:btpanel   
   
简单介绍
由于centos7等系统EOL,但仍有不少业务运行在这些旧系统之上。
希望这个工具可以方便大家切换镜像源。
由于时间精力有限,暂时只做了centos EOL系统的脚本,其他的后续慢慢补齐。
演示截图

脚本特性
1.自动测速,选择最快的镜像源地址。
2.一键换源,一键执行自动切换。
小广告
[弘速云(hosuyun.com) 香港8C8G 仅需50元/月 ](https://www.hosuyun.com)
[【宝塔】送你10850元礼包](https://www.bt.cn/?invite_code=M19yaHFycXY=)
[【腾讯云】云产品1折特惠专区](https://curl.qcloud.com/zASK1SLm)
[【阿里云】云产品爆款特惠](https://www.aliyun.com/minisite/goods?userCode=zqpad1gj)

补充说明
1.旧镜像配置文件均备份在 脚本所在目录/mirror_sources/ 目录下
2.执行yum -y update命令后,配置文件会被恢复到官方源,需要再次执行脚本修改源配置文件。
3.该脚本目前还在开发中,纯小白+生产环境暂时不要使用,避免遇到未知错误。
  centos_7换源脚本
[ol]curl --insecure -sSL -o centos_7.sh https://down.baota.me/project/mirror_sources/script/centos_7.sh && bash centos_7.sh[/ol]复制代码
centos_8换源脚本
[ol]curl --insecure -sSL -o centos_8.sh https://down.baota.me/project/mirror_sources/script/centos_8.sh && bash centos_8.sh[/ol]复制代码
centos_stream_8换源脚本
[ol]curl --insecure -sSL -o centos_stream_8.sh https://down.baota.me/project/mirror_sources/script/centos_stream_8.sh && bash centos_stream_8.sh[/ol]复制代码
debian_10换源脚本
[ol]wget --no-check-certificate -qO debian_10.sh https://down.baota.me/project/mirror_sources/script/debian_10.sh && bash debian_10.sh[/ol]复制代码
debian_11换源脚本
[ol]curl --insecure -sSL -o debian_11.sh https://down.baota.me/project/mirror_sources/script/debian_11.sh && bash debian_11.sh[/ol]复制代码
debian_12换源脚本
[ol]curl --insecure -sSL -o debian_12.sh https://down.baota.me/project/mirror_sources/script/debian_12.sh && bash debian_12.sh[/ol]复制代码
第一时间更新将会在我的博客中发布,欢迎光临我的小栈。
https://www.baota.me/post-450.html

脚本, 镜像, 代码

ajun59420   
这种帖子都没人回,没天理了
piaofu998   
楼主能说下 ZIP文件 怎么做成Linux的脚本的吗。
Winter   
绑定,这种帖子还是支持的。感谢楼主
btpanel
OP
  

piaofu998 发表于 2024-7-31 14:50
楼主能说下 ZIP文件 怎么做成Linux的脚本的吗。

不理解哪来的ZIP文件?

sasber   
mark 一下
lisa2016   

btpanel 发表于 2024-7-31 14:54
不理解哪来的ZIP文件?

debian都不支持嘛那就太夸张了点~~
piaofu998   

btpanel 发表于 2024-7-31 14:54
不理解哪来的ZIP文件?

我以前保存过别人的一个ZIP文件 每次要安装过别人的脚本程序后
才能用 wget https://www.xxx.com/Linux7.0.zip 降级还原
我现在想问下 能不能直接把Linux7.0.zip 译成脚本 以后我就可以直接用这样的脚本安装 如下脚本
curl -sSO https://raw.xxx.com//main/install/install_panel.sh && bash install_panel.sh
icon   
你都说了生产环境不能用
问题是,非生产环境还要死守着centos7是啥路数呢
btpanel
OP
  
   

piaofu998 发表于 2024-7-31 15:23
我以前保存过别人的一个ZIP文件 每次要安装过别人的脚本程序后
才能用 wget https://www.xxx.com/Linux7. ...

宝塔是分升级包跟安装包的,升级包里面没有默认的配置文件,所以你没法直接安装的。
ZIP译成脚本 这个我还真没见过
正常来讲可以拼接命令
curl -sSO https://raw.xxx.com//main/install/install_panel.sh && bash install_panel.sh -y && wget -O LinuxPanel.zip http://download.bt.cn/install/update/LinuxPanel-7.7.0.zip && unzip LinuxPanel.zip && cd panel && bash update.sh && cd .. && rm -f LinuxPanel.zip && rm -rf panel
您需要登录后才可以回帖 登录 | 立即注册

返回顶部