fix:修复打包错误的问题

This commit is contained in:
2026-05-27 23:04:44 +08:00
parent 46545ca0c2
commit 6ab2f8a1f2
7 changed files with 19 additions and 6775 deletions

View File

@@ -82,4 +82,19 @@ nohup command > /dev/null 2>&1 &
# 五、网络管理
| 命令 | 说明 | 示例 | 参数/注释 |
| :---: | :---: | :---: | :---: |
| ip | 查看/配置网络接口 | - | link:查看所有网卡 <br> addr:查看 IP 地址 <br> route:查看路由表 |
| ip | 查看/配置网络接口 | - | link:查看所有网卡 <br> addr:查看 IP 地址 <br> route:查看路由表 |
| ss | 查看网络连接、端口监听、套接字统计 | - | -l监听 <br> -n不解析服务名 <br> -tTCP <br> -p显示进程 PID / 程序名 |
::: tip
1. 显示进程端口
```bash
ss -lntp
```
2. 查看某个端口是否启动
```bash
ss -lntp | grep 8080
```
:::
# 六、实战场景