[CentOS] question on yum-downloadonly

Mon Dec 1 16:02:56 UTC 2008
Steve Huff <shuff at vecna.org>

On Dec 1, 2008, at 9:57 AM, Jerry Geis wrote:

> I found yum-downloadonly and executed my command do that and save the
> dependencies in my current directory.
>
> Now when I execute my command:
> rpm -i mypackage
>
> all the dependencies are not found even though they are in the  
> current directory.
>
> if I do a "yum install mypackage" (and its in the current directory)  
> its not found either.
>
> How do I now install the mypackage in the current directory and look  
> for all dependencies in the current directory?


here are two ways:

$ mkdir rpmtemp
$ sudo yum --downloadonly --downloaddir=./rpmtemp install <package>
$ sudo rpm -Uvh ./rpmtemp/*.rpm
$ sudo rm -rf rpmtemp

or

$ mkdir rpmtemp
$ sudo yum --downloadonly --downloaddir=./rpmtemp install <package>
$ sudo yum localinstall ./rpmtemp/*.rpm
$ sudo rm -rf rpmtemp

-steve

--
If this were played upon a stage now, I could condemn it as an  
improbable fiction. - Fabian, Twelfth Night, III,v



-------------- next part --------------
A non-text attachment was scrubbed...
Name: smime.p7s
Type: application/pkcs7-signature
Size: 2209 bytes
Desc: not available
URL: <http://lists.centos.org/pipermail/centos/attachments/20081201/a17c4c15/attachment-0004.p7s>