|
发表于 2008-4-11 00:56:22
|
显示全部楼层
yumex 无法加载 axelget plugin 的解决方法(至少对我有用):
修改/usr/lib/yum-plugins/axelget.py,注意红色部分
- [color="Red"]#!/usr/bin/env python[/color]
- from yum.plugins import PluginYumExit, TYPE_CORE[color="Red"]#, TYPE_INTERACTIVE[/color]
- from urlparse import urljoin
- import os
- requires_api_version = '2.3'
- [color="Red"]#plugin_type = (TYPE_CORE, TYPE_INTERACTIVE)
- plugin_type = (TYPE_CORE,)[/color]
- enablesize=10000
- trymirrornum=-1
- maxconn=10
复制代码 |
|