一、配置阿里源
第1步: 下载阿里源的配置文件
wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo
第2步: 更新镜像源
清除yum缓存
yum clean all
生成yum缓存
yum makecache
报错:
已加载插件:langpacks, product-id, subscription-manager This system is not registered to Red Hat Subscription Management. You can use subscription-manager to register.
http://mirrors.aliyun.com/centos/7Server/os/x86_64/repodata/repomd.xml: [Errno 14] HTTP Error 404 - Not Found
正在尝试其它镜像。
http://mirrors.aliyuncs.com/centos/7Server/os/x86_64/repodata/repomd.xml: [Errno 14] curl#7 - "Failed connect to mirrors.aliyuncs.com:80拒绝连接"
报错原因: Centos-Base.repo配置文件中的$releasever变量解析错误,导致整个URL地址错误。这种情况一般发生在Redhat系统安装Centos源(我的系统是Redhat 7), " http://mirrors.aliyun.com/centos/ ",发现并无 7Server/目录。因此,应该是$releasever变量解析成了"7Server",进而导致了错误的发生,正确的URL地址为 http://mirrors.aliyun.com/centos/7/os/x86_64/repodata/repomd.xml ,其中的"7"是指系统版本号。
三、解决办法
1.修改yum配置文件
vi /etc/yum.repos.d/CentOS-Base.repo
将全文中所有的 "$releasever" 字符串替换成 "7",因为我的系统是7版本
输入 ":" 进入末行模式
然后输入%s/$releasever/7/g
保存并退出
2.再次更新镜像源
清除yum缓存
yum clean all
生成yum缓存
yum makecache
在修改配置文件后,执行yum makecache命令的时候还是出现了地址无法访问的报错信息,其实这个并不影响。如果不想看到报错信息的话,把aliyuncs部分信息删掉就可以了。
阿里源比较好。阿里源更新和安装软件的速度会很快。因此阿里源比较好。
常用的国内源有阿里源(这是中国官方源)、网易源和搜狐源。除此之外,还有高校源,比如清华、中科大以及浙大。
一般安装包无法定位是安装源的问题,ubuntu中直接 sudo apt-get update即可但是在ubuntu中安装mingw32时,却报错 无法定位安装包
此时需要打开下载源文件sources.list 即
sudo gedit /etc/apt/sources.list
在sources.list末尾添加语句并保存退出
deb http://us.archive.ubuntu.com/ubuntu trusty main universe
再次更新安装即可
sudo apt-get update
sudo apt-get install mingw32
点赞 1
————————————————
版权声明:本文为CSDN博主「asia66」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/asia66/article/details/85263250
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)