Skip to content

πŸ› οΈ Operating System Command-line Tools for Installing Packages

🐧 Installing tools for Alpine


# Download the latest list of available packages
apk update

# Curl / Ping
apk add --no-cache curl iputils-ping

🐧 Installing tools for Ubuntu / Debian


# Download the latest list of available packages
apt update

# Curl / Ping
apt install -y curl iputils-ping