Assuming that I want to install a program called leafpad later.
Currently the only way to install it is via:
yum install leafpad -y
but I want to save this and install it later without internet connection.
How can I grab it from the yum repo and save it to a folder and then install it later?
Answers:
Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.
Method 1
If you’re only interest is in downloading a package + its dependencies for offline installation you can use the tool yumdownloader. It’s part of the package yum-utils.
$ yumdownloader --resolve <package name>
Example
$ yumdownloader --resolve vim-X11 Loaded plugins: langpacks, presto, refresh-packagekit Adding en_US to language list --> Running transaction check ---> Package vim-X11.x86_64 2:7.3.315-1.fc14 set to be reinstalled --> Finished Dependency Resolution vim-X11-7.3.315-1.fc14.x86_64.rpm | 1.1 MB 00:01
The above command shows the graphical version of vim, gvim being installed. Notice that it checks to see if you have the necessary dependencies installed, if not then it will download them as well.
What’s the packages location
You can also find out what the URL of a given package would be using another tool included with yum-utils called repoquery. This is a fantastic tool and allows you to peer inside of repositories without having to download the packages that they offer.
For example:
$ repoquery --location vim-X11 http://kdeforge.unl.edu/mirrors/fedora-archive/fedora/linux/updates/14/x86_64/vim-X11-7.3.315-1.fc14.x86_64.rpm
NOTE: This URL is the URL from one of the repository mirrors, so it may change from run to run.
What else about the package?
You can use repoquery to answer these questions too:
What does a package require:
$ reqpoquery -R vim-X11
What does a package contain:
$ repoquery -l vim-X11
There’s more consult the man page for repoquery.
All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0