What exactly does apt
do for us? More specifically what does it mean when someone says it manages package dependencies? Does this mean that if I am installing PackageA but PackageA requires PackageA1,PackageA2,PackageA3, and PackageA4. Then apt
will download these for me?
Also does apt
look for errors when downloading a package using the checksum
??
I fail to see how this is a duplicate, so if someone can explain why that'd be great. The linked 'duplicate question' asks specifically about apt-get update/upgrade
however there is far more to apt
then just apt-get update
such as apt-get install/remove/purge
or apt-cache ...
dpkg
tool that does the install.dpkg
however can only used already downloaded files, so yes,apt
will download (as long as you have a source for the required pacakage), and yes it does verify the package is correctly signed & matches fingerprint. Apt though has many functions; it canupdate
repo lists (update), performupgrade
(within a set of rules), performfull-upgrade
(fewer rules & more 'intelligent' than simple upgrade) etc... refer to the documentation. – guiverc Jul 27 '18 at 08:53dpkg
requires they be installed at the same time, or already be installed.apt
will check they are installed, and if not attempt download & then install... – guiverc Jul 27 '18 at 08:58