Как использовать ping в Fedora Docker - PullRequest
0 голосов
/ 12 апреля 2019

В корневом каталоге контейнера / я набираю

ping

и получаю

bash: ping: command not found

, затем набираю

yum install iputils

, затем набираю

ping

, и я получаю

bash: /usr/bin/ping: Operation not permitted

, тогда я делаю

sudo ping

, и я получаю

bash: sudo: command not found

, поэтому я печатаю

yum install sudo

и я печатаю

sudo ping

, и я получаю

sudo: unable to execute /bin/ping: Operation not permitted

, и в этот момент я сдаюсь и бросаю руки в воздух ...

так как я могу использовать ping утилиту, и я также хочу использовать другие утилиты, такие как hostname и ifconfig

1 Ответ

0 голосов
/ 12 апреля 2019

Работает с последней федорой

$ docker run -it fedora /bin/bash
Unable to find image 'fedora:latest' locally
latest: Pulling from library/fedora
01eb078129a0: Pull complete
Digest: sha256:8ee55e140e8751492ab2cfa4513c82093cd2716df9311ea6f442f1f1259cbb3e
Status: Downloaded newer image for fedora:latest

[root@5eee4a163a0e /]# pwd
/

[root@5eee4a163a0e /]# ping
bash: ping: command not found

[root@5eee4a163a0e /]# yum install iputils
Fedora Modular 29 - x86_64                                                                                                                                                  349 kB/s | 1.5 MB     00:04
Fedora Modular 29 - x86_64 - Updates                                                                                                                                        291 kB/s | 2.1 MB     00:07
Fedora 29 - x86_64 - Updates                                                                                                                                                4.3 MB/s |  25 MB     00:05
Fedora 29 - x86_64                                                                                                                                                          5.0 MB/s |  62 MB     00:12
Dependencies resolved.
============================================================================================================================================================================================================
 Package                                        Architecture                                  Version                                                   Repository                                     Size
============================================================================================================================================================================================================
Installing:
 iputils                                        x86_64                                        20180629-2.fc29                                           fedora                                        130 k

Transaction Summary
============================================================================================================================================================================================================
Install  1 Package

Total download size: 130 k
Installed size: 334 k
Is this ok [y/N]: y
Downloading Packages:
iputils-20180629-2.fc29.x86_64.rpm                                                                                                                                           84 kB/s | 130 kB     00:01
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Total                                                                                                                                                                        45 kB/s | 130 kB     00:02
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                                                                                                                                                    1/1
  Installing       : iputils-20180629-2.fc29.x86_64                                                                                                                                                     1/1
  Running scriptlet: iputils-20180629-2.fc29.x86_64                                                                                                                                                     1/1
  Verifying        : iputils-20180629-2.fc29.x86_64                                                                                                                                                     1/1

Installed:
  iputils-20180629-2.fc29.x86_64

Complete!

[root@5eee4a163a0e /]# ping
Usage: ping [-aAbBdDfhLnOqrRUvV64] [-c count] [-i interval] [-I interface]
            [-m mark] [-M pmtudisc_option] [-l preload] [-p pattern] [-Q tos]
            [-s packetsize] [-S sndbuf] [-t ttl] [-T timestamp_option]
            [-w deadline] [-W timeout] [hop1 ...] destination
Usage: ping -6 [-aAbBdDfhLnOqrRUvV] [-c count] [-i interval] [-I interface]
             [-l preload] [-m mark] [-M pmtudisc_option]
             [-N nodeinfo_option] [-p pattern] [-Q tclass] [-s packetsize]
             [-S sndbuf] [-t ttl] [-T timestamp_option] [-w deadline]
             [-W timeout] destination

[root@5eee4a163a0e /]#
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...