购置了新主机,作为主机玩家们无外乎三部曲:测速->重装->部署。作为博主经常为忘记相关脚本而烦恼,所以特意用烂笔头记录了主机的常用脚本,整理成集,为其命名主机常用脚本集。欢迎复制!
网络重装脚本
PS:自定义密码直接 -p 你想要的密码就行!!!
部分机器需要设置网卡,否则可以VNC,但是不能远程SSH
- -firmware 额外的驱动支持
- -d Debian系统 后面是系统版本号
- -c Centos系统 后面是系统版本号
- -v 后面写64位 32位
- -a 不清楚这个干啥的但是每个脚本都带
- --mirror 后面是镜像源地址
- -p 后面写自定义密码
- –ip-addr ifconfig -a 后获取到的 例:194.87.xxx.xxx
- –ip-gate route -n 后获取到的 例 194.87.xxx.xxx
- –ip-mask 255.255.xxx.xx
· 甲骨文、三毛、Vir、RN等大部分VPS通用,三毛、甲骨文 记得去掉 -firmware
- bash <(wget --no-check-certificate -qO- 'https://moeclub.org/attachment/LinuxShell/InstallNET.sh') -d 11 -v 64 -a -firmware -p 自定义密码
PS:如果你是腾讯云记得卸载组件 否则会导致报错 DD失败
- systemctl stop tat_agent
- systemctl disable tat_agent
- rm -rf /etc/systemd/system/tat_agent.service
- rm -fr /usr/local/qcloud
- ps -A | grep agent
- # 检查看是否还有腾讯云组件
- # kill 这个进程
· 国内VPS需要更换镜像源否则很慢!我这里使用的华为源,如果你是腾讯云后面可以换成内网源,节省流量,下面有写!
- bash <(wget --no-check-certificate -qO- 'https://moeclub.org/attachment/LinuxShell/InstallNET.sh') -d 11 -v 64 -a --mirror 'https://mirrors.huaweicloud.com/debian/' -p 自定义密码
镜像站地址
官方给出的地址列表:https://www.debian.org/mirror/list
- 一些国内的
- ftp.cn.debian.org
- mirror.bjtu.edu.cn
- mirror.lzu.edu.cn
- mirror.nju.edu.cn
- mirrors.163.com
- mirrors.bfsu.edu.cn
- mirrors.hit.edu.cn
- mirrors.huaweicloud.com
- mirror.sjtu.edu.cn
- mirrors.tuna.tsinghua.edu.cn
- mirrors.ustc.edu.cn
- 使用方法:(大致都是一样的)
- 清华源
- --mirror 'https://mirrors.ustc.edu.cn/debian/'
- 腾讯源
- --mirror 'http://mirrors.tencent.com/debian/'
- --mirror 'http://mirrors.cloud.tencent.com/debian/'
- 腾讯源内网(dd完毕后可以修改 走内网不费额外流量)
- http://mirrors.tencentyun.com/
- 阿里源
- --mirror 'https://mirrors.aliyun.com/debian/'
- 华为源
- --mirror 'https://mirrors.huaweicloud.com/debian/'
· DD windows
- wget --no-check-certificate -qO InstallNET.sh 'https://moeclub.org/attachment/LinuxShell/InstallNET.sh' && bash InstallNET.sh -dd 'http://d.nat.ee/win/lite/win7-ent-sp1-x64-cn/win7-ent-sp1-x64-cn.vhd.gz'
· 带 WebUI 可查看进度的
- https://raw.githubusercontent.com/flyqie/dd-shell/master/Core_Install.sh
国内机可使用
- https://ghproxy.com/https://raw.githubusercontent.com/flyqie/dd-shell/master/Core_Install.sh
常用脚本
一键开启BBR(适用于较新的Debian、Ubuntu)
- echo "net.core.default_qdisc=fq" >> /etc/sysctl.conf
- echo "net.ipv4.tcp_congestion_control=bbr" >> /etc/sysctl.conf
- sysctl -p
- sysctl net.ipv4.tcp_available_congestion_control
- lsmod | grep bbr
superbench
- wget -qO- git.io/superbench.sh | bash
Bench.sh
- wget -qO- bench.sh | bash
YABS.sh
- wget -qO- yabs.sh | bash
三网测速
-
bash <(curl -sL bash.icu/speedtest)
流媒体
- # 第一个
- bash <(curl -L -s https://raw.githubusercontent.com/lmc999/RegionRestrictionCheck/main/check.sh)
- # 第二个
- bash <(curl -sSL "https://github.com/CoiaPrant/MediaUnlock_Test/raw/main/check.sh")
- # 第三个(和第一个一样)
- bash <(curl -L -s check.unlock.media)
回程
- # 第一个
- wget https://raw.githubusercontent.com/nanqinlang-script/testrace/master/testrace.sh
- bash testrace.sh
- # 第二个
- wget -qO- git.io/besttrace | bash
- # 第三个
- curl http://tutu.ovh/bash/returnroute/test.sh | bash
yabs 机器跑分
- curl -sL yabs.sh | bash
一件安装docker
国外机
- curl -sSL https://get.docker.com/ | sh
国内机
- curl -sSL https://get.daocloud.io/docker | sh
卸载docker
- sudo apt-get remove docker docker-engine
- rm -fr /var/lib/docker/
安装docker-compose
国外机
- sudo curl -L "https://github.com/docker/compose/releases/download/1.24.1/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
- sudo chmod +x /usr/local/bin/docker-compose
国内机
- curl -L https://get.daocloud.io/docker/compose/releases/download/v2.1.1/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose
- chmod +x /usr/local/bin/docker-compose
文章评论