uname -a 显示系统所有信息,包括系统名称,主机名,系统架构,内核版本,发行版本
uname -n 显示主机名
uname -m 显示系统架构
uname -r 显示内核版本
lsof -i:port 查看端口情况
netstat -tunlp 查看所有端口状态
ss -tunlp 查看所有端口状态
cat /etc/issue 查看发行版本信息
cat /proc/cpuinfo 查看cpu信息
curl ipinfo.io 查看地址归属相关信息
netstat -tulpn | grep 容器名称 可以查看容器运行的端口,适用于主机模式部署的docker
tail -f /var/log/nginx/error.log 查看nginx的错误日志
ip a 查看地址信息
ip add show eth0 查看接口信息
nc -u -zv region2.v2.argotunnel.com 7844 查看远端主机的连通性,包括tcp和udp端口
test-netconnection -computername region2.argotunnel.com -port 7844 在wins上的powershell运行,同上,但是只能测试tcp端口
docker system prune -a 删除所有未使用的镜像、容器、网络和卷
docker builder prune –all 删除未使用的构建缓存