记录一次错误使用 yum 命令的尴尬
目录
前言
本来想安装 iotop 工具查看存储服务器的 IO 运行状态,啥也没想,直接安装:
yum install iotop -y
结果遇到了如下报错信息:
mirrors.aliyun.com/centos/%24r…: [Errno 14] HTTP Error 404 - Not FoundTrying other mirror.mirrors.aliyuncs.com/centos/%24r…: [Errno 12] Timeout on mirrors.aliyuncs.com/centos/$rel…: (28, 'Connection timed out after 30001 milliseconds')Trying other mirror.mirrors.cloud.aliyuncs.com/centos/%24r…: [Errno 14] HTTP Error 404 - Not FoundTrying other mirror.Error: Cannot retrieve repository metadata (repomd.xml) for repository: base. Please verify its path and try again
报错截图:
正文
猛的一看是以为镜像仓库的问题,自然而然想到了更新工具仓库,于是运行命令:
yum update
又出现了类似的错误:
mirrors.aliyun.com/centos/%24r…: [Errno 14] HTTP Error 404 - Not FoundTrying other mirror.mirrors.aliyuncs.com/centos/%24r…: [Errno 12] Timeout on mirrors.aliyuncs.com/centos/$rel…: (28, 'Connection timed out after 30001 milliseconds')Trying other mirror.mirrors.cloud.aliyuncs.com/centos/%24r…: [Errno 14] HTTP Error 404 - Not FoundTrying other mirror.Error: Cannot retrieve repository metadata (repomd.xml) for repository: base. Please verify its path and try again
报错截图:
我突然意识到问题不一般,使用如下命令查看系统版本:
uname -a
输出结果:
Linux al-bj-boom-hb-backstage-01 4.15.0-147-generic #151-Ubuntu SMP Fri Jun 18 19:21:19 UTC 2021 x86_64 GNU/Linux
原来是 Ubuntu 系统,默认情况下,Ubuntu 系统是不支持 yum 命令,应该使用 apt。
但是也可以通过其他方式让 Ubuntu 系统支持 yum 命令,但这是后话了,自己也没有试过。
使用 apt 命令安装,工具 iotop 安装成功,使用如下命令查看服务器的 IO 状态:
iotop
执行结果如下:
结尾
今天这件事纯属是一次乌龙,但是也说明了一个问题,做事情不要想当然,这样很容易陷入误区。
作者简介:大家好,我是 liuzhen007,是一位音视频技术爱好者,同时也是 CSDN 博客专家、华为云社区云享专家、签约作者,欢迎关注我分享更多音视频相关内容!
版权声明: 本文为 InfoQ 作者【liuzhen007】的原创文章。
原文链接:【http://xie.infoq.cn/article/088f8deb21084bdf93f8143bc】。文章转载请联系作者。
评论