Docker - Ubuntu - bash: ping: command not found

前端 未结 7 2169
走了就别回头了
走了就别回头了 2020-12-07 07:15

I\'ve got a Docker container running Ubuntu which I did as follows:

docker run -it ubuntu /bin/bash

however it doesn\'t seem to have

相关标签:
7条回答
  • 2020-12-07 08:03

    Every time you get this kind of error

    bash: <command>: command not found
    
    • On a host with that command already working with this solution:

      dpkg -S $(which <command>)
      
    • Don't have a host with that package installed? Try this:

      apt-file search /bin/<command>
      
    0 讨论(0)
提交回复
热议问题