при подключении следующих репозитариев
rpm -Uvh http://download.fedora.redhat.com/pub/epel/5/i386/epel-release-5-3.noarch.rpm
rpm -Uvh http://apt.sw.be/redhat/el5/en/i386/RPMS.dag/rpmforge-release-0.3.6-1.el5.rf.i386.rpm
rpm -Uvh http://download1.rpmfusion.org/free/el/updates/testing/5/i386/rpmfusion-free-release-5-0.1.noarch.rpm
rpm -Uvh http://download1.rpmfusion.org/nonfree/el/updates/testing/5/i386/rpmfusion-nonfree-release-5-0.1.noarch.rpm
rpm -Uvh http://repo.redhat-club.org/redhat/5/i386/redhatclub-repository-release-5-4.el5.rhc.noarch.rpm
После выставил приоритеты следующим скриптом
import ConfigParser
def writecfg( file, config ):
configfile = open( file, 'wb' )
config.write(configfile)
config = ConfigParser.RawConfigParser()
file='/etc/yum.repos.d/CentOS-Base.repo'
config.read(file)
config.set('base','priority',1)
config.set('updates','priority',1)
config.set('addons','priority',2)
config.set('extras','priority',2)
config.set('centosplus','priority',2)
writecfg( file, config )
config = ConfigParser.RawConfigParser()
file='/etc/yum.repos.d/epel.repo'
config.read(file)
config.set('epel','priority', 3)
writecfg( file, config )
config = ConfigParser.RawConfigParser()
file='/etc/yum.repos.d/rpmforge.repo'
config.read(file)
config.set('rpmforge','priority',4)
writecfg( file, config )
хотя устанавливаю некоторые пакеты например qitum
[root@server robert]# yum install qutim
Loading "fastestmirror" plugin
Loading "priorities" plugin
Loading mirror speeds from cached hostfile
* rpmfusion-nonfree-updates-testing: mirror.yandex.ru
* epel: mirror.yandex.ru
* rpmfusion-free-updates-testing: mirror.yandex.ru
* rpmfusion-nonfree-updates: mirror.yandex.ru
* rpmforge: apt.sw.be
* extras: mirror.yandex.ru
* rpmfusion-free-updates: mirror.yandex.ru
* updates: mirror.yandex.ru
* base: mirror.yandex.ru
* addons: mirror.yandex.ru
2886 packages excluded due to repository priority protections
Setting up Install Process
Parsing package install arguments
No package qutim available.
Nothing to do
как быть?
rpm -Uvh http://download.fedora.redhat.com/pub/epel/5/i386/epel-release-5-3.noarch.rpm
rpm -Uvh http://apt.sw.be/redhat/el5/en/i386/RPMS.dag/rpmforge-release-0.3.6-1.el5.rf.i386.rpm
rpm -Uvh http://download1.rpmfusion.org/free/el/updates/testing/5/i386/rpmfusion-free-release-5-0.1.noarch.rpm
rpm -Uvh http://download1.rpmfusion.org/nonfree/el/updates/testing/5/i386/rpmfusion-nonfree-release-5-0.1.noarch.rpm
rpm -Uvh http://repo.redhat-club.org/redhat/5/i386/redhatclub-repository-release-5-4.el5.rhc.noarch.rpm
После выставил приоритеты следующим скриптом
import ConfigParser
def writecfg( file, config ):
configfile = open( file, 'wb' )
config.write(configfile)
config = ConfigParser.RawConfigParser()
file='/etc/yum.repos.d/CentOS-Base.repo'
config.read(file)
config.set('base','priority',1)
config.set('updates','priority',1)
config.set('addons','priority',2)
config.set('extras','priority',2)
config.set('centosplus','priority',2)
writecfg( file, config )
config = ConfigParser.RawConfigParser()
file='/etc/yum.repos.d/epel.repo'
config.read(file)
config.set('epel','priority', 3)
writecfg( file, config )
config = ConfigParser.RawConfigParser()
file='/etc/yum.repos.d/rpmforge.repo'
config.read(file)
config.set('rpmforge','priority',4)
writecfg( file, config )
хотя устанавливаю некоторые пакеты например qitum
[root@server robert]# yum install qutim
Loading "fastestmirror" plugin
Loading "priorities" plugin
Loading mirror speeds from cached hostfile
* rpmfusion-nonfree-updates-testing: mirror.yandex.ru
* epel: mirror.yandex.ru
* rpmfusion-free-updates-testing: mirror.yandex.ru
* rpmfusion-nonfree-updates: mirror.yandex.ru
* rpmforge: apt.sw.be
* extras: mirror.yandex.ru
* rpmfusion-free-updates: mirror.yandex.ru
* updates: mirror.yandex.ru
* base: mirror.yandex.ru
* addons: mirror.yandex.ru
2886 packages excluded due to repository priority protections
Setting up Install Process
Parsing package install arguments
No package qutim available.
Nothing to do
как быть?