bash: git: command not found

# centos:
yum install git -y
----------
# ubuntu/debian:
apt-get install git -y
apt-get update
apt-get install git -y

bash: curl: command not found

# ubuntu/debian:
apt-get update -y && apt-get install curl -y
apt update -y && apt install curl -y
----------
# centos:
yum update -y && yum install curl -y

-bash: wget: command not found

# ubuntu/debian:
apt-get update -y
apt-get install wget -y
----------
# centos:
yum update -y
yum install wget -y

查询各ip到你服务器的连接数

netstat -ntu | awk '{print $5}' | cut -d: -f1 | sort | uniq -c | sort -nr

● Docker 常用命令

最后修改:2024 年 05 月 22 日
如果觉得我的文章对你有用,请随意赞赏