Linux 输入ping www.baudu.com后代码一直跑
时间: 2023-12-10 10:04:34 浏览: 226
当您在Linux终端中输入 `ping www.baidu.com` 命令后,它会不断发送 ICMP 报文到目标主机(百度服务器),并等待主机返回 ICMP 回复报文。因此,您会看到一些类似于下面这样的输出:
```
PING www.baidu.com (220.181.38.148) 56(84) bytes of data.
64 bytes from 220.181.38.148: icmp_seq=1 ttl=52 time=3.77 ms
64 bytes from 220.181.38.148: icmp_seq=2 ttl=52 time=3.79 ms
64 bytes from 220.181.38.148: icmp_seq=3 ttl=52 time=3.78 ms
64 bytes from 220.181.38.148: icmp_seq=4 ttl=52 time=3.78 ms
64 bytes from 220.181.38.148: icmp_seq=5 ttl=52 time=3.78 ms
```
这些输出表示您的主机正在与目标主机进行通信,并在等待目标主机的响应。如果您想停止这个进程,可以使用 `Ctrl + C` 组合键来中断它。
阅读全文