VPS 系统重装后要做的事

BBR 加速脚本

1
wget -N --no-check-certificate "https://raw.githubusercontent.com/chiakge/Linux-NetSpeed/master/tcp.sh" && chmod +x tcp.sh && ./tcp.sh

设置 Python3 为默认版本

1
2
update-alternatives --install /usr/bin/python python /usr/bin/python2 1
update-alternatives --install /usr/bin/python python /usr/bin/python3 2

扩大搬瓦工的 Swap 空间

1
2
3
4
5
6
7
8
9
10
11
12
13
## 定位到根目录 
cd ~/..

## 删除原有的 Swap 空间
rm swap
rm swapfile

## 创建并格式化新的 Swap 空间
dd if=/dev/zero of=/swapfile bs=1M count=1024
mkswap /swapfile

## 启动新的 Swap 空间
swapon /swapfile

安装 Pi-hole

1
curl -sSL https://install.pi-hole.net | bash

安装 V2Ray 一键脚本

bash <(curl -s -L https://raw.githubusercontent.com/233boy/v2ray/master/install.sh)

选择 websocket+TSL

要是脚本失效了 github 上还有备份(切换分支即可见)