bash: cmake: command not found...+++++++lsb_release: command not found

一 .bash: cmake: command not found…

centos中安装那个cmake。

1、问题
[root@PC3 home]# cmake
bash: cmake: command not found...
Similar command is: 'make'

当前系统:

[root@PC3 home]# lsb_release -a
LSB Version:    :core-4.1-amd64:core-4.1-noarch:cxx-4.1-amd64:cxx-4.1-noarch:desktop-4.1-amd64:desktop-4.1-noarch:languages-4.1-amd64:languages-4.1-noarch:printing-4.1-amd64:printing-4.1-noarch
Distributor ID: RedHatEnterpriseServer
Description:    Red Hat Enterprise Linux Server release 7.0 (Maipo)
Release:        7.0
Codename:       Maipo
-----------------------------------
bash: cmake: command not found...

也可能会遇到 lsb_release: command not found

遇到此问题详见 二. bash: lsb_release: command not found错误的解决方法

2、安装cmake
[root@PC3 home]# yum install cmake
Loaded plugins: langpacks, product-id, subscription-manager
This system is not registered to Red Hat Subscription Management. You can use subscription-manager to register.
rhel7                                                                                                         | 4.1 kB  00:00:00
Resolving Dependencies
--> Running transaction check
---> Package cmake.x86_64 0:2.8.11-4.el7 will be installed
--> Finished Dependency ResolutionDependencies Resolved=====================================================================================================================================Package                      Arch                          Version                               Repository                    Size
=====================================================================================================================================
Installing:cmake                        x86_64                        2.8.11-4.el7                          rhel7                        6.7 MTransaction Summary
=====================================================================================================================================
Install  1 PackageTotal download size: 6.7 M
Installed size: 25 M
Is this ok [y/d/N]: y
Downloading packages:
Running transaction check
Running transaction test
Transaction test succeeded
Running transactionInstalling : cmake-2.8.11-4.el7.x86_64                                                                                         1/1Verifying  : cmake-2.8.11-4.el7.x86_64                                                                                         1/1Installed:cmake.x86_64 0:2.8.11-4.el7Complete!
-----------------------------------
bash: cmake: command not found...
3、测试效果
[root@PC3 home]# cmake --version
cmake version 2.8.11
[root@PC3 home]# cmake | head
cmake version 2.8.11
Usagecmake [options] <path-to-source>cmake [options] <path-to-existing-build>Options-C <initial-cache>          = Pre-load a script to populate the cache.-D <var>:<type>=<value>     = Create a cmake cache entry.-U <globbing_expr>          = Remove matching entries from CMake cache.
-----------------------------------
bash: cmake: command not found...

二. bash: lsb_release: command not found错误的解决方法

转载后的博文


[root@localhost ~]# slb_release -a
bash: slb_release: command not found...

-bash: lsb_release: command not found 就是 lsb_release命令没有安装

通过搜索,找到下面文章,文章中说有更好的方法不推荐,

不推荐的原因:为了装个lsb_release ,就还要装104M的其他依赖包之类的。

先看看这个命令属于哪个软件包:yum provides */lsb_release

在这里插入图片描述

可以看出,属于redhat-lsb这个包,那么接着使用yum安装这个包:yum install -y redhat-lsb

[root@localhost ~]# lsb_release  -r
Release:	7.9.2009
[root@localhost ~]# lsb_release -a
LSB Version:	:core-4.1-amd64:core-4.1-noarch:cxx-4.1-amd64:cxx-4.1-noarch:desktop-4.1-amd64:desktop-4.1-noarch:languages-4.1-amd64:languages-4.1-noarch:printing-4.1-amd64:printing-4.1-noarch
Distributor ID:	CentOS
Description:	CentOS Linux release 7.9.2009 (Core)
Release:	7.9.2009
Codename:	Core

转载之原博文:CentOS中-bash: lsb_release: command not found错误的解决方法

这篇文章主要介绍了CentOS中-bash: lsb_release: command not found错误的解决方法,同样适用于RedHat系的其他Linux系统,需要的朋友可以参考下

lsb_release可以查看系统工具,但是很多系统都没装这个命令。其实我也不建议用

lsb_release 来查看系统版本,因为有更好的方法。之所以我不推荐,是有原因的,见下
面解决:-bash: lsb_release: command not found办法:

-bash: lsb_release: command not found 就是 lsb_release命令没有安装。所以我们用
yum命令安装下就行了。

先看看这个命令属于哪个软件包:

代码如下:

# yum provides */lsb_release</p> <p>[root@ksharpdabu ~]# yum provides */lsb_release
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* base: mirrors.psychz.net
* epel: mirrors.solfo.com
* extras: mirror.san.fastserv.com
* updates: mirror.lax.hugeserver.com
base/filelists_db | 5.1 MB 00:00
epel/filelists_db | 7.8 MB 00:00
extras/filelists_db | 31 kB 00:00
updates/filelists_db | 614 kB 00:00
vz-base/filelists | 825 B 00:00
vz-updates/filelists | 3.0 kB 00:00
redhat-lsb-core-4.0-7.el6.centos.i686 : LSB base libraries support for CentOS
Repo : base
Matched from:
Filename : /usr/bin/lsb_release</p> <p>dkms-2.2.0.3-28.git.7c3e7c5.el6.noarch : Dynamic Kernel Module Support Framework
Repo : epel
Matched from:
Filename : /usr/lib/dkms/lsb_release</p> <p>dkms-2.2.0.3-26.el6.noarch : Dynamic Kernel Module Support Framework
Repo : installed
Matched from:
Filename : /usr/lib/dkms/lsb_release</p> <p>redhat-lsb-core-4.0-7.el6.centos.i686 : LSB base libraries support for CentOS
Repo : installed
Matched from:
Filename : /usr/bin/lsb_release

可以看出,属于redhat-lsb这个包,那么接着使用yum安装这个包:

代码如下:

# yum install -y redhat-lsb

截取一部分运行结果

代码如下:

……</p> <p>(71/77): redhat-lsb-compat-4.0-7.el6.centos.i686.rpm | 10 kB 00:00
(72/77): redhat-lsb-core-4.0-7.el6.centos.i686.rpm | 25 kB 00:00
(73/77): redhat-lsb-graphics-4.0-7.el6.centos.i686.rpm | 12 kB 00:00
(74/77): redhat-lsb-printing-4.0-7.el6.centos.i686.rpm | 11 kB 00:00
(75/77): urw-fonts-2.4-10.el6.noarch.rpm | 3.1 MB 00:00
(76/77): xml-common-0.6.3-33.el6.noarch.rpm | 18 kB 00:00
(77/77): xorg-x11-font-utils-7.2-11.el6.i686.rpm | 73 kB 00:00
-----------------------------------------------------------------------------------------------
Total 9.3 MB/s | 104 MB 00:11

可以看到,为了装个lsb_release ,就还要装104M的其他依赖包之类的。这就是我不推荐这个命令查系统的原因。

然后,就可以使用lsb_release 查看系统版本了;

代码如下:

# lsb_release -r</p> <p>Release: 6.5

其他用法,可自己使用 “-h” 自行查阅。







mb5fdcadbf25fde

bash: cmake: command not found…

静文·红·精灵

bash: lsb_release: command not found错误的解决方法

脚本之家

CentOS中-bash: lsb_release: command not found错误的解决方法

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/99126.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

mysql索引为什么提高查询速度(底层原理)

一、索引原理图 二、索引数据存储到硬盘而不是内存&#xff1f; 硬盘内存 成本低成本高 容量大容量小 读写速度一般读取速度快 断电后数据永久存储断电后数据清空 三、硬盘数据为什么要读取到内存&#xff1f;为啥不直接…

HarmonyOS—UI开发性能提升的推荐方法

注&#xff1a;本文转载自HarmonyOS官网文档 开发者若使用低性能的代码实现功能场景可能不会影响应用的正常运行&#xff0c;但却会对应用的性能造成负面影响。本章节列举出了一些可提升性能的场景供开发者参考&#xff0c;以避免应用实现上带来的性能劣化。 使用数据懒加载 开…

rpm打包

文章目录 rpm打包 1. rpm打包步骤0&#xff09;准备工作&#xff1a;安装打包工具rpm-build和rpmdevtools&#xff08;1&#xff09;在线安装&#xff08;2&#xff09;离线安装 1&#xff09;创建初始化目录2&#xff09;准备打包内容3&#xff09;编写打包脚本 spec文件4&…

Android Studio 汉化

一、汉化&#xff1a; 查看版本号&#xff0c;查看Android Studio版本&#xff0c;根据版本下载对应的汉化包。例如我的是223。 下载汉化包&#xff1a; 中文语言包下载地址 找到对应的版本 回到Android Studio 1、进入设置 2、从磁盘安装插件 3、选择下载好的包点击OK 4、…

【计算机网络】http协议

目录 前言 认识URL URLEncode和URLDecode http协议格式 http方法 GET POST GET与POST的区别 http状态码 http常见header 简易的http服务器 前言 我们在序列化和反序列化这一章中&#xff0c;实现了一个网络版的计算器。这个里面设计到了对协议的分析与处…

QT 一个简易闹钟

1 效果图 pro QT core gui texttospeechgreaterThan(QT_MAJOR_VERSION, 4): QT widgetsCONFIG c11# The following define makes your compiler emit warnings if you use # any Qt feature that has been marked deprecated (the exact warnings # depend on your c…

测试理论与方法----测试流程第三个环节:设计测试用例

测试流程第三个环节&#xff1a;设计测试用例&#xff1a;怎么测<——>测试需求的提取&#xff1a;测什么 ### 5、测试用例 描述&#xff1a;测试用例(TestCase)&#xff1a;是一份关于【具体测试步骤】的文档&#xff0c;是为了达到最佳的测试效果或高效揭露软件中潜藏的…

使用C++操作Redis客户端

"Who can say where the path will go?" 前面我们花了很大的篇幅&#xff0c;讲解了redis中常见常使用的五种数据结构&#xff0c;以及五种数据结构的操作和redis命令。不过在日常开发中&#xff0c;我们的这些操作都是在redis为我们提供的客户端中的&#xff0c;就…

Xilinx UltraScale架构之可配置逻辑块CLB

目录 一、概览 二、UltraScale架构 2.1 UltraScale/UltraScale特点 2.2 与7系列CLB差异 三、 CLB结构 3.1 LUT 3.2 FF 3.3 多路选择器Multiplexers 3.4 进位链Carry Chain 四、应用 4.1 分布式RAM 4.2 移位寄存器 4.3 进位链Carry Chain 五、参考资料 一、概览 二…

WSL Opencv with_ffmpeg conan1.60.0

我是ubuntu18. self.options[“opencv”].with_ffmpeg True 关键是gcc版本需要conan支持&#xff0c;比如我的是&#xff1a; compilergcc compiler.version7.5 此外还需要安装系统所需库&#xff1a; https://qq742971636.blog.csdn.net/article/details/132559789 甚至来…

最小生成树Kruskal、Prim算法C++

什么是最小生成树 连通图&#xff1a; 在无向图中&#xff0c;若从顶点v1到顶点v2有路径&#xff0c;则称顶点v1和顶点v2是连通的。如果图中任意一对顶点都是连通的&#xff0c;则称此图为连通图。 生成树&#xff1a; 一个连通图的最小连通子图称作为图的生成树。有n个顶点的…

【分布式搜索引擎es】

文章目录 数据搜索DSL实现查询文档搜索结果处理 RestClient实现 旅游案例酒店搜索和分页酒店结果过滤我周边的酒店酒店竞价排名 elasticsearch最擅长的是 搜索和 数据分析。 数据搜索 DSL实现 查询文档 常见的查询类型包括&#xff1a; 查询所有&#xff1a;查询出所有数…