apt-get

Linux package management utility.

apt-get is the classic command-line tool for handling packages on Ubuntu and Debian. It fetches software from repositories, handles all necessary dependencies, and ensures secure installation via signature verification.

        graph LR
  Center["apt-get"]:::main
  Pre_linux["linux"]:::pre --> Center
  click Pre_linux "/terms/linux"
  Rel_bash["bash"]:::related -.-> Center
  click Rel_bash "/terms/bash"
  Rel_npm["npm"]:::related -.-> Center
  click Rel_npm "/terms/npm"
  Rel_crypto_wallet["crypto-wallet"]:::related -.-> Center
  click Rel_crypto_wallet "/terms/crypto-wallet"
  classDef main fill:#7c3aed,stroke:#8b5cf6,stroke-width:2px,color:white,font-weight:bold,rx:5,ry:5;
  classDef pre fill:#0f172a,stroke:#3b82f6,color:#94a3b8,rx:5,ry:5;
  classDef child fill:#0f172a,stroke:#10b981,color:#94a3b8,rx:5,ry:5;
  classDef related fill:#0f172a,stroke:#8b5cf6,stroke-dasharray: 5 5,color:#94a3b8,rx:5,ry:5;
  linkStyle default stroke:#4b5563,stroke-width:2px;

      

🧠 Knowledge Check

1 / 5

🧒 Explain Like I'm 5

It's like a command you type to tell [Linux](/en/terms/linux) to 'go find and install this app for me'.

🤓 Expert Deep Dive

Uses libapt-pkg for resolution and dpkg for backend installation. Essential for Docker and server automation due to stable CLI output.

🔗 Related Terms

Prerequisites:

📚 Sources