在线路差的小鸡上,锐速>bbrplus>bbr
bbrplus 测试是 almalinux8.9 使用 https://github.com/ylx2016/Linux-NetSpeed 安装的
Centos7 锐速安装记录:
在CentOS 7上使用YUM源可以通过以下步骤进行:
首先备份你当前的YUM源配置文件,以防需要恢复:
sudo cp /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
下载 YUM 配置文件
推荐华为源
curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.huaweicloud.com/repository/conf/CentOS-7-reg.repo
curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
清除缓存并生成新的缓存: yum clean all yum makecache
安装 bt
安装 x-ui
下载指定版本内核
wget http://vault.centos.org/7.6.1810/os/x86_64/Packages/kernel-3.10.0-957.el7.x86_64.rpm
安装这个内核
yum install kernel-3.10.0-957.el7.x86_64.rpm
卸载其他内核
yum install ca-certificates wget -y && update-ca-trust force-enable wget -O tcpx.sh "https://github.com/ylx2016/Linux-NetSpeed/raw/master/tcpx.sh" && chmod +x tcpx.sh && ./tcpx.sh 选择 52 输入要保留的内核 3.10.0-957.el7.x86_64
安装 lotserver
bash <(wget --no-check-certificate -qO- https://raw.githubusercontent.com/1265578519/lotServer/main/lotServerInstall.sh) install
Centos7 开机启动
- 创建 /root/lotserver_start.sh
#!/bin/bash
/usr/bin/sh /appex/bin/lotServer.sh restart
echo "nohup sh /root/lotserver_start.sh > /dev/null 2&>1 &" >> /etc/rc.d/rc.local
- echo "/usr/bin/sh /appex/bin/lotServer.sh restart" >> /etc/rc.d/rc.local
chmod +x /etc/rc.d/rc.local
Debian9 锐速安装记录:
下载内核到 VPS:
wget http://cloudsign.s500.xrea.com/linux-image-4.9.0-4-amd64_4.9.65-3+deb9u1_amd64.deb](http://cloudsign.s500.xrea.com/linux-image-4.9.0-4-amd64_4.9.65-3+deb9u1_amd64.deb
安装内核:
dpkg -i linux-image-4.9.0-4-amd64_4.9.65-3+deb9u1_amd64.deb
查看系统中已安装的内核:
dpkg -l|grep linux-image
此时会看到形如以下所示:
linux-image-4.9.0-4-amd64 linux-image-4.9.0-8-amd64
卸载除 4.9.0-4 以外的所有内核:
apt purge linux-image-4.9.0-8-amd64
系统此时会弹出提示,选择 NO 并回车。随后再次执行步骤3/4,直到确认只剩下 4.9.0-4
或者使用上面 tcpx.sh 卸载其他内核
更新引导并重启系统:
update-grub reboot
安装 lotserver 同上。
其他:锐速许可证搭建
https://github.com/Tai7sy/LotServer_KeyGen
更新许可,使用ifconfig查看网卡mac地址,替换00:00:00:00:00:00
============================================
/appex/etc/apx.lic
位置不一定一样需要修改
wget -qO /appex/etc/apx.lic 'http://cloudsign.s500.xrea.com/lotserver/keygen.php?ver=1&mac=00:00:00:00:00:00'
查看当前系统内核 uname -r 查看当前默认内核启动项 grub2-editenv list 更改默认启动内核项 grub2-set-default 1(改成你要改的内核对应的数字)
reboot 查看当前系统内核 uname -r