博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
修复“-bash: locate: command not found”
阅读量:6322 次
发布时间:2019-06-22

本文共 377 字,大约阅读时间需要 1 分钟。

部分Linux版本使用locate命令出现一下错误:

1
-
bash
locate
command 
not found

 

(一)其原因是没有安装mlocate这个包;按顺序执行如下命令:

1
yum list mlocate |
grep 
mlocate 
#检查可用的mlocate可用版本

1
yum 
install 
mlocate.x86_64 
#安装可用的版本

 

(二)修复“locate: can not stat () `/var/lib/mlocate/mlocate.db': No such file or directory”,输入以下命令即可:

1
updatedb

本文转自 bannerpei 51CTO博客,原文链接:http://blog.51cto.com/281816327/1558682,如需转载请自行联系原作者

你可能感兴趣的文章
Centos 6 编译内核支持LVS-SNAT模式
查看>>
JAVA数据类型
查看>>
TCP segment of a reassembled PDU
查看>>
hdu 5195 DZY Loves Topological Sorting BestCoder Round #35 1002 [ 拓扑排序 + 优先队列 || 线段树 ]...
查看>>
【Oracle】oracle中快速判断某一日期是闰年或平年
查看>>
datatable 转 json 格式
查看>>
vs2010生成Dll文件并引用dll(C#)
查看>>
藏在兰州拉面里精益管理秘诀
查看>>
How to blog on Github
查看>>
百思不得姐 one day
查看>>
19.04.16--指针笔记-参数传递
查看>>
面向对象
查看>>
POJ1860 Currency Exchange
查看>>
关于ST-Link的internal command error问题的解决方法
查看>>
[IDE]VC2012 项目之间依赖关系取消自动Link导致的LNK2019
查看>>
IT兄弟连 JavaWeb教程 Servlet会话跟踪 Cookie路径问题
查看>>
synchronized(this)(转)
查看>>
类别标签处理
查看>>
深度|余凯:基于深度学习的自动驾驶之路
查看>>
ORA-00845: MEMORY_TARGET not supported on this system
查看>>