how to download software's using yum for offline use.
how to download a software using yum. Dont suggest
yum install software
. i want to download it and install it later.
how to download a software using yum. Dont suggest
yum install software
. i want to download it and install it later.
I would prefer yumdownloader
instead of --downloadonly
option in yum
.
Check the documentation and read what's the difference.
Read the manual page if you want.
Use the command
yumdownloader --resolve "packagename"
where "packagename" replace it with the package you want to download for later installation. Use the --resolve
switch, to resolve (download) any dependencies.
With the --destdir
switch as we read from the manual page
--destdir DIR
Specify a destination directory for the download. Defaults to the current directory.
Where DIR replace it with the path you want to store the downloaded .rpm
pacakages.
You can use
`#yum --downloadonly install software`
To install
`#yum install software`
Asked: 2014-02-04 23:58:20 -0600
Seen: 1,833 times
Last updated: Feb 05 '14