Packet management
Linux package managers are tools that automate installation, removal and management of software packages. Packages are archives that contain binaries of software, configuration files, information about dependencies and keep track of updates and upgrades. They go search this packages at repositories. Repositories are servers all around the world that contain the software packages and their metadata, when you download or update, the packet manager uses these repositories, they come by default in your Linux distribution and are associated to it. While technically possible to use packages from other Linux distributions, it's generally not recommended as it can lead to issues and conflicts with library versions, configurations, dependencies, etc. If you are most likely using Kali Linux for your cybersecurity studies, you are using a Debian-based distro, and therefore using the APT packet manager.
In Debian you can check or modify your repositories at /etc/apt/sources.list
APT (Advanced Package Manager)
DPKG
To install .deb
Debian packages, we can also use dpkg
GIT
We can download GitHub packages directly with. By default they will be downloaded to the current directory.
Last updated