Usage

# Update sources and update packages
sudo apt update 
sudo apt upgrade -y
# List installed packages
sudo apt list --installed
# Add repository
sudo add-apt-repository <repository> -y
 
# Remove repository
sudo add-apt-repository <repository> -y --remove

Snippets

Networking Utilities

Snippet to install basic networking tools
Useful with containers applications like docker

tools=(
    net-tools # ifconfig, netstat
    dnsutils # nslookup, dig
    inetutils-ping
    traceroute
    telnet
    curl
    wget
)
 
sudo apt install "${tools[@]}" -y