1、常用命令centos
更新组件
yum update -y && yum update -y && yum install -y socat
yum -y install curl #ContOS 安装 curl
yum -y install wget #ContOS 安装 wget
防火墙
firewall-cmd --state #查看防火墙
systemctl stop firewalld.service #关闭防火墙
systemctl disable firewalld.service #关闭自启
2、常用命令debain
更新组件
apt update -y && apt install -y curl && apt install -y socat
apt-get install wget #Debian Ubuntu 安装 wget
apt-get install curl #Debian Ubuntu 安装 crul
3、其他命令
1、开启BBR加速
wget -N --no-check-certificate "https://github.000060000.xyz/tcpx.sh" && chmod +x tcpx.sh && ./tcpx.sh
2、TCP优化脚本
wget -N "http://sh.nekoneko.cloud/tools.sh" -O tools.sh && chmod +x tools.sh && ./tools.sh
3、开启root远程登录
sudo passwd root #修改root密码
su root
vim /etc/ssh/sshd_config # 编辑ssh文件
PasswordAuthentication yes
PermitRootLogin yes
sudo service sshd restart #重启ssh服务
4、iperf3
iperf3 -c 45.8.186.214 -p 50000 -i 2 -t 10 --get-server-output
apt -y install iperf3 && iperf3 -s -p 50000
iperf3 -c 45.8.xxx.xxx -p 50000 -i 2 -t 10 --get-server-output
5、speed测速
sudo apt-get install curl
curl -s https://packagecloud.io/install/repositories/ookla/speedtest-cli/script.deb.sh | sudo bash
sudo apt-get install speedtest
speedtest
评论区