Version 3 by Weston See
on Apr 11, 2012 15:25.

compared with
Current by Nata Ramanenka
on Jun 04, 2012 08:46.

Key
This line was removed.
This word was removed. This word was added.
This line was added.

Changes (13)

View Page History
{page-title}

{kb-symptom}
It is common place for system administrators to not want to reboot their machine and rightfully so. You might find yourself in a situation where you don’t’ have the latest version of the kernel and {{yum}} isn’t giving you the kernel-devel package that you need to build the {{r1soft hcpdriver}}.


[C5.6-base]
name=CentOS-5.6 - Base

baseurl=http://vault.centos.org/5.6/os/$basearch/

gpgcheck=1

gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5

enabled=1

[C5.6-updates]

name=CentOS-5.6 - Updates

baseurl=http://vault.centos.org/5.6/updates/$basearch/

gpgcheck=1

gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5
enabled=1
{code}
 
In some cases an entry for your version may not exist in the CentOS-Vault.repo file, however you can edit the file to add the entries you need. The process involves adding new entries in the repo file including your version number from the template below.

{code}
[C(Your Version Number)-base]
name=CentOS-(Your Version Number) - Base
baseurl=http://vault.centos.org/(Your Version Number)/os/$basearch/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5
enabled=1

[C(Your Version Number-updates]
name=CentOS-(Your Version Number) - Updates
baseurl=http://vault.centos.org/(Your Version Number)/updates/$basearch/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5
enabled=1
{code}