Docker/Ubuntu: Difference between revisions

From Omnia
Jump to navigation Jump to search
(Created page with "== Tools to install == Install ping: <ref>https://stackoverflow.com/questions/39901311/docker-ubuntu-bash-ping-command-not-found</ref> apt-get update -y apt-get install -y iputils-ping")
 
No edit summary
 
Line 1: Line 1:
== Tools to install ==
== Tools to install ==
=== ping ===


Install ping: <ref>https://stackoverflow.com/questions/39901311/docker-ubuntu-bash-ping-command-not-found</ref>
Install ping: <ref>https://stackoverflow.com/questions/39901311/docker-ubuntu-bash-ping-command-not-found</ref>
  apt-get update -y
  apt-get update -y
  apt-get install -y iputils-ping
  apt-get install -y iputils-ping
=== ip ===
Install ip command: <ref>https://askubuntu.com/questions/1212555/what-apt-package-installs-ip-addr-command</ref>
apt-get update -y
apt install iproute2 -y

Latest revision as of 06:10, 16 December 2024

Tools to install

ping

Install ping: [1]

apt-get update -y
apt-get install -y iputils-ping

ip

Install ip command: [2]

apt-get update -y
apt install iproute2 -y