Debian11已把bbr编进内核中,如果版本低需要先升级Linux的内核,
编辑 /etc/sysctl.conf 文件,添加以下内容
net.core.default_qdisc=fq
net.ipv4.tcp_congestion_control=bbr
或直接用命令修改
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
#出现类似内容则开启成功net.ipv4.tcp_available_congestion_control = reno cubic bbr
或使用以下命令查看是否成功
lsmod | grep bbr
#或成功则会出现类似的内容 tcp_bbr 20480 1
curl: command not found错误解决方法
Linux 系统运行 curl 命令提示错误
curl: command not found
错误原因是系统中没有安装 curl,使用如下命令安装 curl 后再次运行正确执行。
ubuntu/debian 系统:
apt-get update -y && apt-get install curl -y
centos 系统:
yum update -y && yum install curl -y
或者执行命令
wget -N "https://github.000060000.xyz/tcpx.sh" && chmod +x tcpx.sh && ./tcpx.sh
© 版权声明
THE END
暂无评论内容