记录一次错误使用 yum 命令的尴尬
目录
前言
本来想安装 iotop 工具查看存储服务器的 IO 运行状态,啥也没想直接:
yum install iotop -y
结果遇到了如下报错信息:
http://mirrors.aliyun.com/centos/%24releasever/os/x86_64/repodata/repomd.xml: [Errno 14] HTTP Error 404 - Not Found
Trying other mirror.
http://mirrors.aliyuncs.com/centos/%24releasever/os/x86_64/repodata/repomd.xml: [Errno 12] Timeout on http://mirrors.aliyuncs.com/centos/$releasever/os/x86_64/repodata/repomd.xml: (28, 'Connection timed out after 30001 milliseconds')
Trying other mirror.
http://mirrors.cloud.aliyuncs.com/centos/%24releasever/os/x86_64/repodata/repomd.xml: [Errno 14] HTTP Error 404 - Not Found
Trying other mirror.
Error: Cannot retrieve repository metadata (repomd.xml) for repository: base. Please verify its path and try again
报错截图:
正文
一看是镜像仓库的问题,自然而然想到了更新工具仓库,于是运行命令:
yum update
又出现了类似的错误:
http://mirrors.aliyun.com/centos/%24releasever/os/x86_64/repodata/repomd.xml: [Errno 14] HTTP Error 404 - Not Found
Trying other mirror.
http://mirrors.aliyuncs.com/centos/%24releasever/os/x86_64/repodata/repomd.xml: [Errno 12] Timeout on http://mirrors.aliyuncs.com/centos/$releasever/os/x86_64/repodata/repomd.xml: (28, 'Connection timed out after 30001 milliseconds')
Trying other mirror.
http://mirrors.cloud.aliyuncs.com/centos/%24releasever/os/x86_64/repodata/repomd.xml: [Errno 14] HTTP Error 404 - Not Found
Trying 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博客专家、华为云社区云享专家、签约作者,欢迎关注我分享更多音视频相关内容!
- 点赞
- 收藏
- 关注作者
评论(0)