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.
|
|
||||
|
|
|
Well, by default the yum cache is disabled, read down for more details, a trick to improve the speed is the following.
Will not update the local cache, therefore your search will be a little bit faster. I prefer to create a local file with all the packages doing this way:
Then I can grep what I'm searching:
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
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:
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:
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. |
||||
|
|