以下操作的系统环境均为 CentOS 7
国际各线路丢包测试
Ping.pe 是瓦工出品的丢包测试,可以看到各运营商的丢包数据。
直接访问网页:Ping.pe
ssh 登陆 VPS
ssh -l root -p 22 服务器IP地址
更新 CentOS7 系统补丁
yum -y update && yum upgrade
Bench.sh
秋水逸冰大佬的写的Bench.sh
脚本
显示当前测试的各种系统信息;
取自世界多处的知名数据中心的测试点,下载测试比较全面;
支持 IPv6 下载测速;
IO 测试三次,并显示平均值。
脚本代码如下:
# 方案1
wget -qO- bench.sh | bash
# 方案2
wget -qO- 86.re/bench.sh | bash
SuperBench.sh
老鬼大佬的SuperBench
测试脚本
改进了显示的模式,基本参数添加了颜色,方便区分与查找。
I/O测试,更改了原来默认的测试的内容,采用小文件,中等文件,大文件,分别测试IO性能,然后取平均值。
速度测试替换成了 Superspeed 里面的测试,第一个默认节点是 Speedtest 默认,其他分别测试到中国电信,联通,移动,各三个不同地区的速度。
脚本代码如下:
# 方案1
wget -qO- git.io/superbench.sh | bash
# 方案2
wget -qO- https://raw.githubusercontent.com/oooldking/script/master/superbench_git.sh | bash
Zbench.sh
基于秋水逸冰(teddysun)的Bench.sh和老鬼(Oldking)的 SuperBench 进行整合二次开发。
加入 Ping 以及路由测试的功能,还能生成完整的 web 测评报告,分享给其他人查看测评数据。ZBench 是专门为国人测试 Linux 服务器而开发的,因为加强了到中国的带宽和延迟测试。
脚本代码如下:
# 中文版
wget -N --no-check-certificate https://raw.githubusercontent.com/FunctionClub/ZBench/master/ZBench-CN.sh && bash ZBench-CN.sh
# 英文版
wget -N --no-check-certificate https://raw.githubusercontent.com/FunctionClub/ZBench/master/ZBench.sh && bash ZBench.sh
流媒体解锁查询
多种流媒体通用脚本 项目地址:
https://github.com/lmc999/RegionRestrictionCheck
bash <(curl -L -s check.unlock.media)
# 只测IPv4结果
bash <(curl -L -s check.unlock.media) -M 4
NETFLIX-VERIFY 流媒体NetFlix解锁检测脚本,专门检测奈飞。
# 适用于IPv4网络的机器
wget -O nf https://github.com/sjlleo/netflix-verify/releases/download/2.61/nf_2.61_linux_amd64 && chmod +x nf && clear && ./nf
# 简单模式
./nf
# 或者
./nf -method lite
# 发烧友模式
./nf -method full
相关名词解释:
不提供服务 – 所在的地区NF没开通,连自制剧也看不了
宽松版权 – 有些NF拍摄的影片不是特别注重版权,所以限制放的很开
解锁自制剧 – 代表可以看由NF自己拍摄的影片
解锁非自制剧 – 代表可以看NF买下的第三方版权影片
地域解锁 – NF在不同的地区可以看的片源都是不同的,有些影片只能在特定区观看
一般来说,需要能看非自制剧才算真正意义上的NF解锁。
安装宝塔系统
国内版:
yum install -y wget && wget -O install.sh http://download.bt.cn/install/install_6.0.sh && sh install.sh
国际版:
yum install -y wget && wget -O install.sh http://www.aapanel.com/script/install_6.0_en.sh && bash install.sh
以上。