亚洲av成人无遮挡网站在线观看,少妇性bbb搡bbb爽爽爽,亚洲av日韩精品久久久久久,兔费看少妇性l交大片免费,无码少妇一区二区三区

Chinaunix

標題: centos7 怎么配置yum 163的源 [打印本頁]

作者: touchoa    時間: 2014-11-21 16:39
標題: centos7 怎么配置yum 163的源
配置錯了,不能yum
面試配置
[base]
name=CentOS-$releasever - Base - 163.com
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os
baseurl=http://mirrors.163.com/centos/7.0.1406/updates/x86_64/repodata/repomd.xml
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7

#released updates
[updates]
name=CentOS-$releasever - Updates - 163.com
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=updates
baseurl=http://mirrors.163.com/centos/7.0.1406/updates/x86_64/repodata/repomd.xml
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7

#packages used/produced in the build but not released
[addons]
name=CentOS-$releasever - Addons - 163.com
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=addons
baseurl=http://mirrors.163.com/centos/7.0.1406/updates/x86_64/repodata/repomd.xml
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7

#additional packages that may be useful
[extras]
name=CentOS-$releasever - Extras - 163.com
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=extras
baseurl=http://mirrors.163.com/centos/7.0.1406/updates/x86_64/repodata/repomd.xml
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7

#additional packages that extend functionality of existing packages
[centosplus]
name=CentOS-$releasever - Plus - 163.com
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=centosplus
baseurl=http://mirrors.163.com/centos/7.0.1406/updates/x86_64/repodata/repomd.xml
gpgcheck=1
enabled=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7

#contrib - packages by Centos Users
[contrib]
name=CentOS-$releasever - Contrib - 163.com
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=contrib
baseurl=http://mirrors.163.com/centos/7.0.1406/updates/x86_64/repodata/repomd.xml
gpgcheck=1
enabled=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7


錯誤信息
[root@localhost yum.repos.d]# yum clean all
已加載插件:fastestmirror, langpacks
Repository base is listed more than once in the configuration
Repository updates is listed more than once in the configuration
Repository addons is listed more than once in the configuration
Repository extras is listed more than once in the configuration
Repository centosplus is listed more than once in the configuration
Repository contrib is listed more than once in the configuration
正在清理軟件源: addons base extras updates
Cleaning up everything
[root@localhost yum.repos.d]#
[root@localhost yum.repos.d]# yum makecache
已加載插件:fastestmirror, langpacks
Repository base is listed more than once in the configuration
Repository updates is listed more than once in the configuration
Repository addons is listed more than once in the configuration
Repository extras is listed more than once in the configuration
Repository centosplus is listed more than once in the configuration
Repository contrib is listed more than once in the configuration
http://mirrors.163.com/centos/7/ ... epodata/repomd.xml: [Errno 12] Timeout on http://mirrors.ion too slow. Less than 1000 bytes/sec transferred the last 30 seconds')
正在嘗試其它鏡像。
http://mirrors.163.com/centos/7/ ... epodata/repomd.xml: [Errno 12] Timeout on http://mirrors.163.com/centos/7/ ... epodata/repomd.xml: (28, 'Operation too slow. Less than 1000 bytes/sec transferred the last 30 seconds')
正在嘗試其它鏡像。
http://mirrors.163.com/centos/7/ ... epodata/repomd.xml: [Errno 14] HTTP Error 404 - Not Found
正在嘗試其它鏡像。


One of the configured repositories failed (CentOS-7 - Addons - 163.com),
and yum doesn't have enough cached data to continue. At this point the only
safe thing yum can do is fail. There are a few ways to work "fix" this:

     1. Contact the upstream for the repository and get them to fix the problem.

     2. Reconfigure the baseurl/etc. for the repository, to point to a working
        upstream. This is most often useful if you are using a newer
        distribution release than is supported by the repository (and the
        packages for the previous distribution release still work).

     3. Disable the repository, so yum won't use it by default. Yum will then
        just ignore the repository until you permanently enable it again or use
        --enablerepo for temporary usage:

            yum-config-manager --disable addons

     4. Configure the failing repository to be skipped, if it is unavailable.
        Note that yum will try to contact the repo. when it runs most commands,
        so will have to try and fail each time (and thus. yum will be be much
        slower). If it is a very temporary problem though, this is often a nice
        compromise:

            yum-config-manager --save --setopt=addons.skip_if_unavailable=true

failure: repodata/repomd.xml from addons: [Errno 256] No more mirrors to try.
http://mirrors.163.com/centos/7/ ... epodata/repomd.xml: [Errno 12] Timeout on http://mirrors.163.com/centos/7/ ... epodata/repomd.xml: (28, 'Operation too slow. Less than 1000 bytes/sec transferred the last 30 seconds')
http://mirrors.163.com/centos/7/ ... epodata/repomd.xml: [Errno 12] Timeout on http://mirrors.163.com/centos/7/ ... epodata/repomd.xml: (28, 'Operation too slow. Less than 1000 bytes/sec transferred the last 30 seconds')
http://mirrors.163.com/centos/7/ ... epodata/repomd.xml: [Errno 14] HTTP Error 404 - Not Found
[root@localhost yum.repos.d]#


作者: qq58945591    時間: 2014-11-21 19:29
本帖最后由 qq58945591 于 2014-11-21 19:36 編輯

把每行的這個repodata/repomd.xml 去掉。

baseurl=http://mirrors.163.com/centos/7.0.1406/os/x86_64



baseurl=http://mirrors.163.com/centos/7.0.1406/updates/x86_64



baseurl=http://mirrors.163.com/centos/7.0.1406/extras/x86_64





把baseurl= 換成上面這3個
作者: action08    時間: 2014-11-22 07:04
這面試目的就是虐人

平時配置這個,都是復制粘貼一路過來的,沒問題
現(xiàn)在。。。。這面試
作者: touchoa    時間: 2014-11-24 10:31
改了后報:
[root@localhost yum.repos.d]# yum clean all
已加載插件:fastestmirror, langpacks
Repository 'base': Error parsing config: Error parsing "baseurl = 'baseurl=http://mirrors.163.com/centos/7.0.1406/os/x86_64'": URL must be http, ftp, file or https not ""
Repository 'updates': Error parsing config: Error parsing "baseurl = 'baseurl=http://mirrors.163.com/centos/7.0.1406/updates/x86_64'": URL must be http, ftp, file or https not ""
Repository addons is listed more than once in the configuration
Repository 'extras': Error parsing config: Error parsing "baseurl = 'baseurl=http://mirrors.163.com/centos/7.0.1406/extras/x86_64'": URL must be http, ftp, file or https not ""
Repository centosplus is listed more than once in the configuration
Repository contrib is listed more than once in the configuration
正在清理軟件源: addons base extras updates
Cleaning up everything

作者: action08    時間: 2014-11-24 10:51
http://mirrors.163.com/.help/centos.html


發(fā)現(xiàn)沒有7的下載
作者: action08    時間: 2014-11-24 10:53
http://mirrors.aliyun.com/help/centos

也沒有,看來7真是個問題
作者: touchoa    時間: 2014-11-24 11:06
哎,我滴個汗,不知道什么時候有
作者: qq58945591    時間: 2014-11-24 15:26
touchoa 發(fā)表于 2014-11-24 10:31
改了后報:
[root@localhost yum.repos.d]# yum clean all
已加載插件:fastestmirror, langpacks


baseurl = 'baseurl=http://mirrors.163.com/centos/7.0.1406/extras/x86_64 '          #錯誤的配置




baseurl=http://mirrors.163.com/centos/7.0.1406/extras/x86_64                             #正確的配置




歡迎光臨 Chinaunix (http://72891.cn/) Powered by Discuz! X3.2