执行 ping 指令会使用 ICMP 传输协议,发出要求回应的信息,若远端主机的网络功能没有问题,
就会回应该信息,因而得知该主机运作正常。
语法:ping [参数] IP名或主机名
参数包括:
注意:-c+检查的次数,不使用-c选项,将无限次数持续检查
[localhost@shaonian ~]# ping -c 3 39.156.66.10
PING 39.156.66.10 (39.156.66.10) 56(84) bytes of data.
64 bytes from 39.156.66.10: icmp_seq=1 ttl=128 time=8.20 ms
64 bytes from 39.156.66.10: icmp seq=2 ttl=128 time=6.59 ms
64 bytes from 39.156.66.10: icmp seg=3 ttl=128 time=8.18 ms
--- 39.156.66.10 ping statistics ---
3 packets transmitted, 3 received, 0%packet loss, time 2004ms
rtt min/avg/max/mdev = 6.598/7.663/8.208/0.756 ms
[localhost@shaonian ~]# ping -i 3 -s 1024 -t 255 g.cn
PING g.cn (203.208.37.104) 1024(1052) bytes of data.
1032 bytes from bg-in-f104.1e100.net (203.208.37.104): icmp_seq=0 ttl=243 time=62.5 ms
1032 bytes from bg-in-f104.1e100.net (203.208.37.104): icmp_seq=1 ttl=243 time=63.9 ms
1032 bytes from bg-in-f104.1e100.net (203.208.37.104): icmp_seq=2 ttl=243 time=61.9 ms
--- g.cn ping statistics ---
3 packets transmitted, 3 received, 0% packet loss, time 6001ms
rtt min/avg/max/mdev = 61.959/62.843/63.984/0.894 ms, pipe 2
[root@linux ~]#
# -i 3 发送周期为 3秒 -s 设置发送包的大小 -t 设置TTL值为 255
wget是非交互式的文件下载器,可以在命令行内下载网络文件。
命令格式: wget [参数列表] [目标软件、网页的网址]
参数包括:
使用 wget 下载单个文件,从网络下载一个文件并保存在当前目录。
在下载的过程中会显示进度条,包含(下载完成百分比,已经下载的字节,当前下载速度,剩余下
载时间)。
[localhost@shaonian~]# wget http://archive.apache.org/dist/hadoop/common/hadoop3.3.0/hadoop-3.3.0.tar.gz
--2022-10-08 17:50:01-- http://archive.apache.org/dist/hadoop/common/hadoop-3.3.0/hadoop-3.3.0.tar.gz
正在解析主机 archive.apache.0rg(archive.apache.org)... 138.201.131.134, 2a01:4f8:172:2ec5:2
正在连接 archive.apache.org(archive.apache.org)l138.201.131.134:80... 已连接.
已发出 HTTP 请求, 正在等待回应... 2000K
长度:500749234 (478M) [application/x-gzip]
正在保存至:"hadoop-3.3.0.tar.gz.1”
0% [ ]221,865 230KB/s
使用 wget -O 下载并以不同的文件名保存 :
[localhost@shaonian~]# wget -O wordpress.tar.gz http://cn.wordpress.org/wordpress-4.9.4-zh_CN.tar.gz
使用 wget -c 断点续传 :
可以重新启动下载中断的文件,对于下载大文件时突然由于网络等原因中断非常有帮助,可以继续
接着下载而不是重新下载一个文件。
[localhost@shaonian~]# wget -c https://cn.wordpress.org/wordpress-4.9.4-zh_CN.tar.gz
使用 wget -b 后台下载:
对于下载非常大的文件的时候,我们可以使用参数-b进行后台下载。
[localhost@shaonian ~]# wget -b https://cn.wordpress.org/wordpress-4.9.4-zh_CN.tar.gz
会将日志写入到当前工作目录的wget-log文件。
可以使用以下命令来察看下载进度:
[localhost@shaonian ~]# tail -f wget-log
注意:无论下载是否完成,都会生成要下载的文件,如果下载未完成,要及时清理未完成的不可用
文件。
curl可以发送http网络请求,可用于:下载文件、获取信息等。
语法 :curl [参数] URL
参数包括:
-O,用于下载文件,当url是下载链接时,可以使用此选项保存文件。
通过curl下载hadoop-3.3.0安装包:
[localhost@shaonian ~]# curl -O http://archive.apache.org/dist/hadoop/common/hadoop-3.3.0/hadoop-3.3.0.tar.gz