目 录CONTENT

文章目录

Linux常用命令

兜兜管理员
2024-09-26 / 0 评论 / 0 点赞 / 37 阅读 / 0 字
温馨提示:
本文最后更新于2025-01-03,若内容或图片失效,请留言反馈。 部分素材来自网络,若不小心影响到您的利益,请联系我们删除。

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

0

评论区