标签归档:VPS常用脚本

Linux一键dd脚本更新,更新Fedora39支持,适用于大部分VPS主机和部分独立服务器

linux一键dd脚本支持Debian 11/12、Ubuntu/20.04、RockyLinux 8/9和AlmaLinux 8/9系统的网络重装,自动适配境内境外系统源(境内使用阿里云,境外使用官方),适用于 GigsGigsCloud、AkkoCloud、GreenCloud、CloudCone和腾讯云等vps、云服务器和部分独立服务器。

本次更新

  • 更新 Fedora 37/38/39 系统DD支持;
  • 移除已结束声明周期的系统版本。

本次更新在测试 CloudCone 洛杉矶3C3G配置中测试可用。

使用命令:

wget -N --no-check-certificate https://down.vpsaff.net/linux/dd/network-reinstall-os.sh && \
chmod +x network-reinstall-os.sh && ./network-reinstall-os.sh

完整说明:https://www.idcoffer.com/archives/4870

Linux 测试脚本更新,更新Geekbench版本至v6、增加ChatGP API解锁测试

脚本简介

Linux 服务器一键测试脚本,支持speedtest国内外测速(显示上行、下行、抖动和丢包率)、Geekbench v5单核、多核性能测试,Netflix、YOuTube Premium、BiliBili、iQIYI和OpenGPT等解锁测试,以及中国大陆方向路由测试等集成多项常用linux测试项目。

使用方法 完全模式

bash <(wget -qO- https://down.vpsaff.net/linux/speedtest/superbench.sh)
或
wget -qO- https://down.vpsaff.net/linux/speedtest/superbench.sh | sudo bash

superbench.sh

完整结果:https://paste.ubuntu.com/p/r2PksNVrDm/

精简模式

跳过 Geekbench 和国际 speedtest 网络测试

bash <(wget -qO- https://down.vpsaff.net/linux/speedtest/superbench.sh) -f

Speedtest

仅进行 speedtest 国内网络测试

bash <(wget -qO- https://down.vpsaff.net/linux/speedtest/superbench.sh) --speed

流媒体测试

bash <(wget -qO- https://down.vpsaff.net/linux/speedtest/superbench.sh) -m

跳过 Geekbench 测试

bash <(wget -qO- https://down.vpsaff.net/linux/speedtest/superbench-dev.sh) --no-geekbench

更新记录:https://www.idcoffer.com/archives/4764

CentOS8如何安装DockerCE最新版

由于官方源并不能够直接支持CentOS 8,经过多次实践,终于成功安装!暂无发现运行异常,简单写了一下 CentOS 8 安装 Docker CE 最新版的教程分享经验。如果有什么遗漏或者有更好建议,请给站长留言。

安装

1、添加 Docker CE 源

wget https://download.docker.com/linux/centos/docker-ce.repo
sudo mv docker-ce.repo /etc/yum.repos.d/docker-ce.repo

2、安装1.2.2-3或者更高版本的containerd.io

sudo yum install https://download.docker.com/linux/centos/7/x86_64/stable/Packages/containerd.io-1.2.6-3.3.el7.x86_64.rpm

3、安装 Docker CE 最新版

sudo yum install docker-ce docker-ce-cli

4、启动 Docker CE 服务

#启动 docker
sudo systemctl start docker
#设置 docker 自启动
sudo systemctl enable docker

查看 Docker CE 版本

docker -v

5、添加 docker0 到防火墙trusted区域(可选)

如果你开启了 firewalld,会发现Docker CE之的容器内部无法访问外网,把 docker0 添加到防火墙的信任区域(trusted)即可。

sudo firewall-cmd --permanent --zone=trusted  --add-interface=docker0
sudo firewall-cmd --reload