欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

CentOS安装 ping 命令 在centos中ping属于哪个源码包

在centos中ping属于哪个源码包


ping属于iputils包,安装通过yum进行,

#yum install iputils -y

来自  https://zhidao.baidu.com/question/1755713515310051348.html

Docker的CentOS镜像由于做了精简,去掉了 ping 命令,那我们该如何安装这个命令呢

首先可以用 yum provides 命令来搜索哪个软件包里包含了 ping 命令


  1. [root@a7128460b671 /]# yum provides "*/ping"
  2. Loaded plugins: fastestmirror, ovl
  3. Determining fastest mirrors
  4. * base: mirrors.cn99.com
  5. * extras: mirrors.cn99.com
  6. * updates: mirrors.cn99.com
  7. base                                                                                                                                                                  | 3.7 kB     00:00
  8. base/primary_db                                                                                                                                                       | 4.7 MB     00:01
  9. extras                                                                                                                                                                | 3.4 kB     00:00
  10. extras/primary_db                                                                                                                                                     |  29 kB     00:00
  11. updates                                                                                                                                                               | 3.4 kB     00:00
  12. updates/primary_db                                                                                                                                                    | 5.3 MB     00:01
  13. base/filelists_db                                                                                                                                                     | 6.4 MB     00:01
  14. extras/filelists_db                                                                                                                                                   |  25 kB     00:00
  15. updates/filelists_db                                                                                                                                                  | 3.2 MB     00:00
  16. pacemaker-cli-1.1.15-5.el6.x86_64 : Command line tools for controlling Pacemaker clusters
  17. Repo        : base
  18. Matched from:
  19. Filename    : /usr/lib/ocf/resource.d/pacemaker/ping
  20. irssi-0.8.15-5.el6.x86_64 : Modular text mode IRC client with Perl scripting
  21. Repo        : base
  22. Matched from:
  23. Filename    : /usr/share/irssi/help/ping
  24. iputils-20071127-24.el6.x86_64 : Network monitoring tools including ping
  25. Repo        : base
  26. Matched from:
  27. Filename    : /bin/ping
  28. 1:qt-examples-4.6.2-28.el6_5.x86_64 : Programming examples for qt
  29. Repo        : base
  30. Matched from:
  31. Filename    : /usr/lib64/qt4/examples/dbus/pingpong/ping


可以看到好几个软件包都包含这个命令,但 iputils 最像是我们要找的,安装它



  1. [root@a7128460b671 /]# yum install iputils
  2. .......
  3. [root@a7128460b671 /]# ping 114.114.114.114
  4. PING 114.114.114.114 (114.114.114.114) 56(84) bytes of data.
  5. 64 bytes from 114.114.114.114: icmp_seq=1 ttl=65 time=8.28 ms
  6. 64 bytes from 114.114.114.114: icmp_seq=2 ttl=84 time=9.25 ms
  7. 64 bytes from 114.114.114.114: icmp_seq=3 ttl=63 time=7.69 ms
  8. 64 bytes from 114.114.114.114: icmp_seq=4 ttl=63 time=8.43 ms
  9. 64 bytes from 114.114.114.114: icmp_seq=5 ttl=63 time=10.2 ms


搞定^^


来自  https://blog.csdn.net/zhang197093/article/details/78732494

普通分类: