问题:刚安装的CentOS7在使用yum命令时提示:
One of the configured repositories failed (Unknown),
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 <repoid>
设置网卡开机自动启动
进入/etc/sysconfig/network-scripts 目录。即输入命令 "cd /etc/sysconfig/network-scripts" ,使用命令 "ls -a" 可以查看该目录下的所有文件。

vi ifcfg-en016777736这个文件,每个人的文件名可能不一样,vi ifcfg-en0*(CentOS7修改了网卡命名规则,不再是eth0了,而是ifcfg-eno+数字)

将 "ONBOOT" 的值修改为 "yes" ,之后按esc退出编辑模式,输入 ":wq" 保存退出(权限不够的切换至root用户)
最后:重启系统或者重启网卡,输入命令 "reboot" 或 "service network restart"。
完美解决!
本文介绍了在CentOS7中遇到yum命令无法使用的问题,通过检查网络配置来解决问题。具体步骤包括:进入/etc/sysconfig/network-scripts目录,编辑对应网卡配置文件(如ifcfg-en016777736),将ONBOOT参数设为yes,然后重启系统或网络服务,执行reboot或service network restart命令,从而恢复yum功能。

被折叠的 条评论
为什么被折叠?



