书签
链接
- Aria2NG Web UI
http://file.fly2x.cn/Aria2Ng/
https://file.fly2x.cn/Aria2Ng/
常用命令
-
硬盘IO速度测试
sync; dd if=/dev/zero of=/tmp/tempfile bs=1M count=1024; sync; rm /tmp/tempfile -rf;
-
安装LNMP
wget http://soft.vpser.net/lnmp/lnmp1.7.tar.gz -cO lnmp1.7.tar.gz && tar zxf lnmp1.7.tar.gz && cd lnmp1.7 && ./install.sh lnmp
-
安装BBR
wget --no-check-certificate https://github.com/teddysun/across/raw/master/bbr.sh && chmod +x bbr.sh && ./bbr.sh
验证:运行sysctl net.ipv4.tcp_available_congestion_control
返回值带BBR就成功了。 -
系统信息检测
bash <(curl -s https://raw.githubusercontent.com/Aniverse/A/i/a)
-
Bench.Monster
curl -LsO bench.monster/speedtest.sh; chmod +x speedtest.sh;sh speedtest.sh -all share
-
ZBench
wget -N --no-check-certificate https://github.com/FlyxFly/ZBench/raw/master/ZBench-CN.sh;sh ZBench-CN.sh
-
LemonBench
wget -qO- https://ilemonrain.com/download/shell/LemonBench.sh | bash -s fast
-
SuperBench
curl -Lso- -no-check-certificate https://raw.githubusercontent.com/oooldking/script/master/superbench.sh | bash
-
SuperSpeed三网测速
bash <(curl -Lso- https://git.io/superspeed)
-
Yet-Another-Bench-Script
curl -sL yabs.sh | bash
-
yum install wget nano unzip -y mkdir /home/bt cd /home/bt wget https://cdn.ipip.net/17mon/besttrace4linux.zip unzip besttrace4linux.zip chmod +x besttrace echo "alias bt='/home/bt/besttrace -q 1 -g cn'">>~/.bashrc source ~/.bashrc
-
Rclone 挂载
rclone mount myod:/ /home/onedrive --copy-links --allow-other --allow-non-empty --umask 000 --daemon
-
复制文件,带进度条
rsync -avP source/ destination/
- 通过SSH从其他VPS复制文件,带进度条,如果出错,多运行几次,不会重新传输已有文件
rsync -Pavu -e "ssh -p 22 -i private.key" root@11.22.33.44:/source/ /destination/