How to force 'yum search' to use local metadata/cache?

8,479

You can search through the cached package meta data:

yum -C search mysearch

This way yum won't update the local meta data, therefore your search will be a little bit faster.

I prefer to create a local file with all the packages doing this way:

yum list all > yum-package-list.log

Then I can grep what I'm searching:

grep -i mysearch yum-package-list.log

That's all...

From time to time I'll execute again the yum list all, to update the list.

Important note

From the Fedora manual

  1. List item

By default, current versions of yum delete the data files and packages that they download, after these have been successfully used for an operation. This minimizes the amount of storage space that yum uses. You may enable caching, so that yum retains the files that it downloads in cache directories. Caches provide three advantages:

* The performance of yum increases
* You may carry out yum operations without a network connection, by using only the caches
* You may copy packages from the caches and reuse them elsewhere 

By default, yum stores temporary files under the directory /var/cache/yum/, with one subdirectory for each configured repository. The packages/ directory within each repository directory holds the cached packages. For example, the directory /var/cache/yum/development/packages/ holds packages downloaded from the development repository.

If you remove a package from the cache, you do not affect the copy of the software installed on your system.

1.1. Enabling the Caches

To configure yum to retain downloaded files rather than discarding them, set the keepcache option in /etc/yum.conf to 1:

 keepcache=1 

Refer to Section 9.1, “Editing the yum Configuration” for more information on editing the yum configuration file. Once you enable caching, every yum operation may download package data from the configured repositories. To ensure that the caches have a set of package data, carry out an operation after you enable caching. Use a list or search query to download package data without modifying your system.

Share:
8,479

Related videos on Youtube

tshepang
Author by

tshepang

I do software development for a living and as a hobby. My favorite language is Rust, and I've used Python much in the past. My OS of choice is Debian.

Updated on September 17, 2022

Comments

  • tshepang
    tshepang almost 2 years

    A lot of times when I run yum search, it tends first to download the metadata from a repository. How do I force it to only search the local cache? I prefer quick results to accurate data in this case, and am on a slow line.

  • Dan Pritts
    Dan Pritts over 10 years
    It's not entirely true that yum caches are disabled by default. the package cache is disabled, but the metadata is cached by default. yum -C as you mention uses that locally cached metadata.
  • tmow
    tmow over 10 years
    @DanPritts you are right, I've updated the answer accordingly.