banner
oldcatY

oldcatY

中轻度LoveLive厨,主推莲团,二推水+虹团(缪团是神,星团……)
twitter
github
bilibili
steam

【備份】小雞常用腳本備份

Linux 工具箱 @科技 Lion#

curl -sS -O https://raw.githubusercontent.com/kejilion/sh/main/kejilion.sh && chmod +x kejilion.sh && ./kejilion.sh

DD 腳本#

  • 萌咖 DD 腳本(可 DD Ubuntu/Debian,默認密碼:MoeClub.org)
bash <(wget --no-check-certificate -qO- 'https://raw.githubusercontent.com/MoeClub/Note/master/InstallNET.sh') -d 11 -v 64 -p 密碼 -port 端口 -a -firmware
  • nodeseeek DD 腳本(默認密碼:LeitboGi0ro
##### 更新系統並安裝wget #####
# CentOS:dnf install wget -y
# AlpineLinux:apk update && apk install wget bash && sed -i 's/root:\/bin\/ash/root:\/bin\/bash/g' /etc/passwd
apt update install wget -y 

##### 下載DD腳本 #####
wget --no-check-certificate -qO InstallNET.sh 'https://raw.githubusercontent.com/leitbogioro/Tools/master/Linux_reinstall/InstallNET.sh' && chmod a+x InstallNET.sh

##### 安裝Debian #####
bash InstallNET.sh -debian #可選9-12

##### 安裝Ubuntu #####
bash InstallNET.sh -ubuntu #可選20.04/22.04

##### 安裝Kali rolling #####
bash InstallNET.sh -kali

##### 安裝Fedora #####
bash InstallNET.sh -fedora #可選37/38

##### 安裝AlmaLinux #####
bash InstallNET.sh -almalinux #可選8/9

##### 安裝CentOS #####
bash InstallNET.sh -centos #可選7-9

##### 安裝Rockylinux #####
bash InstallNET.sh -rocky #可選8/9

##### 安裝Windows #####
bash InstallNET.sh -windows #支持 Windows 10 Enterprise LTSC, Windows 11 Pro for Workstation 22H2, Windows Server 2012 R2, Windows Server 2016, Windows Server 2019, Windows Server 2022,重裝時輸入對應系統的數字版本號即可,如果能通過VNC登錄系統,可自動進行 IPv4 靜態配置和自動擴展系統盤分區
  • 快速 DD Debian12 系統(支持 Oracle IPV6)
# 下載腳本
curl -fLO https://raw.githubusercontent.com/bohanyang/debi/master/debi.sh && chmod a+rx debi.sh

# 運行腳本
sudo ./debi.sh --cdn --network-console --ethx --bbr --user root --password <新系統用戶密>

# 安裝後重啟
sudo shutdown -r now

--bbr 開啟 BBR
--ethx 網卡名稱使用傳統形式,如 eth0 而不是 ens3
--cloud-kernel 安裝佔用空間較小的 cloud 內核,但可能會導致 UEFI 啟動的機器(如 Oracle、Azure 及 Hyper-V、Google Cloud 等)VNC 黑屏。BIOS 啟動的普通 VPS 則沒有此問題。
默認時區為 UTC,添加 --timezone Asia/Shanghai 可使用中國時區。
默認使用 Debian 官方 CDN 鏡像源(deb.debian.org),添加 --china 可使用阿里雲鏡像源。

安裝寶塔面板 7.7.0#

  • 安裝
curl -sSO https://raw.githubusercontent.com/8838/btpanel-v7.7.0/main/install/install_panel.sh && bash install_panel.sh
  • 轉為開心版
#1,屏蔽手機號
sed -i "s|bind_user == 'True'|bind_user == 'XXXX'|" /www/server/panel/BTPanel/static/js/index.js

#2,刪除強制綁定手機js文件
rm -f /www/server/panel/data/bind.pl

#3,手動解鎖寶塔所有付費插件為永不過期
#文件路徑:/www/server/panel/data/plugin.json
#搜索字符串:"endtime": -1全部替換為"endtime": 999999999999

#4,給plugin.json文件上鎖防止自動修復為免費版
chattr +i /www/server/panel/data/plugin.json

BBR & 優化腳本#

  • 開啟原版 BBR(建議 Linux 內核 ≥ 5.0)
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
  • BBR 優化腳本
bash <(curl -Ls https://github.com/lanziii/bbr-/releases/download/123/tools.sh)

小雞測評腳本#

融合怪測試腳本#

bash <(wget -qO- bash.spiritlhl.net/ecs)

流媒體測試腳本#

bash <(curl -L -s https://raw.githubusercontent.com/lmc999/RegionRestrictionCheck/main/check.sh)

GB5 測試腳本#

bash <(curl -sL bash.icu/gb5)

測速腳本#

bash <(curl -sL bash.icu/speedtest)

三網僅顯示回程線路腳本#

wget -qO- git.io/besttrace | bash

一鍵更換 SSH 端口腳本(默認 2222)#

sed -i 's/#Port\ 22/Port\ 2222/' /etc/ssh/sshd_config && systemctl reload ssh

劍皇腳本#

wget https://github.com/maintell/webBenchmark/releases/download/0.6/webBenchmark_linux_x64
chmod +x webBenchmark_linux_x64
./webBenchmark_linux_x64 -c 32 -s https://target.url

Docker 安裝與卸載#

  • Docker 安裝
curl -sSL https://get.docker.com/ | sh
  • Docker 卸載
sudo apt-get remove docker docker-engine -y
sudo apt-get autoremove -y
rm -fr /var/lib/docker/
載入中......
此文章數據所有權由區塊鏈加密技術和智能合約保障僅歸創作者所有。