Apt (Advanced Packaging Tool) has option to download only package by apt-get -d install [pkg-name]
.
I have also find apt-get download [pkg-name]
to download packages.
Then what is the difference between --download-only
(apt-get -d install
)and download
(apt-get download
)?
And When should I use between them?
I could list following:
Try both without sudo,
apt-get download
will pass andapt-get -d install
will fail (root required)By default
apt-get -d install
will save .deb in/var/cache/apt/archives
andapt-get download
in current directoryapt-get download
is newer, you wouldn't even find it in the old versions.From man page:
The
--download-only
switch needs to be accompanied by another command, be itinstall
,upgrade
or whatever command would require to download package. If you don't need to download packages, is plain as day that it wouldn't download anything.--download-only
restricts apt actions to just downloading the packages that it needs into the cache directory, nothing more. If your operation would end into downloading dependencies it will download them for you.Since it needs a command like
install
orupgrade
it normally would requiresudo
or root permissions, since the default directory used to download the packages is owned by root.The
download
command is standalone, it reads the package list and download only the package specified, it doesn't download dependencies nor other packages. It doesn't require root permissions if you can write your current directory, this wouldn't store the files in the package cache directory.Use the
man
command :)apt-get download
will download the package, but not its dependencies, to the current directory.apt-get -d install
will download the given package and all missing dependencies to the system packages directory (/var/cache/apt/archives
).Use the first if you want to download a .deb to then tinker with it (uncompress it, poke at it with
dpkg
, whatever).Use the second if you want to "pre-download" a set of packages for later installation.