CentOS 6 命令lsb_release: command not found解决方案

在使用 lsb_release -a命令查询linux系统版本的时候,发现lsb_release这个没装,提示错误是:

[root@localhost Desktop]# lsb_release -a

bash: lsb_release: command not found...

这里,分享一下查询linux系统版本提示bash:lsb_release:command not found错误解决办法.

1.确认lsb_release是否安装

[root@localhost Desktop]# lsb_release -a

bash: lsb_release: command not found... 

这就说明没有安装。

2.安装lsb_release

使用yum安装lsb,具体命令如下:

[root@localhost Desktop]# yum install -y redhat-lsb

3.验证lsb是否已经安装

执行命令,发现可以查看系统版本。

(base) [root@bigData init]# lsb_release -a
LSB Version:	:base-4.0-amd64:base-4.0-noarch:core-4.0-amd64:core-4.0-noarch:graphics-4.0-amd64:graphics-4.0-noarch:printing-4.0-amd64:printing-4.0-noarch
Distributor ID:	CentOS
Description:	CentOS release 6.5 (Final)
Release:	6.5
Codename:	Final
发布了115 篇原创文章 · 获赞 4 · 访问量 4585

猜你喜欢

转载自blog.csdn.net/weixin_43999327/article/details/104461372