I want to install some packages from repository but always when I'm trying to yum install packagename
yum updates db:
Loaded plugins: fastestmirror, langpacks, presto, refresh-packagekit
Determining fastest mirrors
updates/metalink | 23 kB 00:00
* fedora: nl.mirror.eurid.eu
* rpmfusion-free: ftp.astral.ro
* rpmfusion-free-updates: ftp.astral.ro
* rpmfusion-nonfree: ftp.astral.ro
* rpmfusion-nonfree-updates: ftp.astral.ro
* updates: nl.mirror.eurid.eu
fedora-awesome | 3.3 kB 00:00
google-chrome | 951 B 00:00
rpmfusion-free-updates | 3.3 kB 00:00
rpmfusion-free-updates/primary_db | 272 kB 00:08
rpmfusion-nonfree-updates | 3.3 kB 00:00
rpmfusion-nonfree-updates/primary_db | 93 kB 00:05
updates | 4.7 kB 00:00
updates/primary_db | 4.6 MB 02:35
updates/group | 1.9 MB 00:33
So using yum install packagename -C
also not works ("cache not found" error happens and yum makecache
don't give results too).
But I just want to install packages without updating db.
If you want
yum
to behave likeapt-get
(not to update the metadata by each run), edit/etc/yum.conf
and put there:metadata_expire=never
or
metadata_expire=7d
in case you want to update the metadata after a week. If you run
yum makecache
, your metadata will be updated like byapt-get update
in Debian.But keep in mind that if you use "never" in the config file, you will have to care about that manually. If you use i.e. "7d", you will save your data bandwidth, but after a week, the metadata will be updated for you automatically.
Here is the
metadata_expire
documentation:If you want to install a package without updating the db, you download the rpm directly (either via yumdownloader, ftp or web browser) and then install it with the rpm directly:
I do not recommend you do this, as it is a lot more work to track down the dependencies (that is why yum is created) and it could break future installs via yum.
What you're asking is out of the spirit of yum in some regards. Yum is a comprehensive package and dependency manager. In order to do it's job and not screw up your system by mix-and-matching incompatible packages, it needs to have that data you don't want to update.
You can manually analyze what dependencies a package has by using
deplist <packagename>
and install them manually.Not having yum have an up-to-date seems like an odd request whatever the circumstances...