`

如何查找Linux文件 locate find whereis which 命令

 
阅读更多

1、使用locate命令。

locate命令基于数据库查找,第一次运行时需首先运行updatedb命令更新数据库。

语法:locate <filename>

例如查找stdio.h文件在如:

[root@localhost sys]# locate stdio.h
/usr/include/stdio.h
/usr/include/bits/stdio.h
/usr/include/boost/iostreams/filter/stdio.hpp
/usr/include/c++/4.4.4/tr1/stdio.h
/usr/include/glib-2.0/glib/gstdio.h
/usr/include/libgsf-1/gsf/gsf-infile-stdio.h
/usr/include/libgsf-1/gsf/gsf-input-stdio.h
/usr/include/libgsf-1/gsf/gsf-outfile-stdio.h
/usr/include/libgsf-1/gsf/gsf-output-stdio.h
/usr/lib/i686-redhat-linux5E/include/stdio.h
/usr/lib/i686-redhat-linux5E/include/bits/stdio.h
/usr/lib/perl5/CORE/nostdio.h
/usr/share/man/man0p/stdio.h.0p.gz

 

2、使用find命令。

语法:find <起始目录> <搜索条件> <动作>

默认起始目录是.(当前目录)。

默认动作是输出文件名。

[root@localhost sys]# find /usr/ -name stdio.h
/usr/lib/i686-redhat-linux5E/include/stdio.h
/usr/lib/i686-redhat-linux5E/include/bits/stdio.h
/usr/include/c++/4.4.4/tr1/stdio.h
/usr/include/stdio.h
/usr/include/bits/stdio.h

 

3、whereis

语法:whereis <filename>

功能:除给出文件全路径外,同时给出可执行文件对应的源码及man page文件。

[root@localhost sys]# whereis stdio.h
stdio: /usr/include/stdio.h /usr/share/man/man3/stdio.3.gz

 

4、which

语法:which <filename>

功能:在PATH环境变量列出的路径中搜索指定的文件,给出文件全路径。

 

5.whatis


whatis command examples

Whatis command displays a single line description about a command.

[root@localhost ~]# whatis ifconfig
ifconfig             (8)  - configure a network interface

 

which 查看可执行文件的位置
whereis 查看文件的位置
locate 配合数据库查看文件位置
find 实际搜寻硬盘查询文件名称
1、which
语法:
[root@redhat ~]# which 可执行文件名称
例如:
[root@redhat ~]# which passwd
/usr/bin/passwd
which是通过PATH环境变量到该路径内查找可执行文件,所以基本的功能是寻找可执行文件

2、whereis
语法:
[root@redhat ~]# whereis [-bmsu] 文件或者目录名称
参数说明:
-b : 只找二进制文件
-m : 只找在说明文件manual路径下的文件
-s : 只找source源文件
-u : 没有说明文档的文件
例如:
[root@redhat ~]# whereis passwd
passwd: /usr/bin/passwd /etc/passwd /usr/share/man/man1/passwd.1.gz /usr/share/man/man5/passwd.5.gz
将和passwd文件相关的文件都查找出来

[root@redhat ~]# whereis -b passwd
passwd: /usr/bin/passwd /etc/passwd
只将二进制文件查找出来

和find相比,whereis查找的速度非常快,这是因为linux系统会将系统内的所有文件都记录在一个数据库文件中,当使用whereis和下面即将介绍的locate时,会从数据库中查找数据,而不是像find命令那样,通过遍历硬盘来查找,效率自然会很高。
但是该数据库文件并不是实时更新,默认情况下时一星期更新一次,因此,我们在用whereis和locate查找文件时,有时会找到已经被删除的数据,或者刚刚建立文件,却无法查找到,原因就是因为数据库文件没有被更新。

3、locate
语法:
[root@redhat ~]# locate 文件或者目录名称
例如:
[root@redhat ~]# locate passwd
/home/weblogic/bea/user_projects/domains/zhanggongzhe112/myserver/stage/_appsdir_DB_war/DB.war/jsp/as/user/passwd.jsp
/home/weblogic/bea/user_projects/domains/zhanggongzhe112/myserver/stage/_appsdir_admin_war/admin.war/jsp/platform/passwd.jsp
/lib/security/pam_unix_passwd.so
/lib/security/pam_passwdqc.so
/usr/include/rpcsvc/yppasswd.x
/usr/include/rpcsvc/yppasswd.h
/usr/lib/perl5/5.8.5/i386-linux-thread-multi/rpcsvc/yppasswd.ph
/usr/lib/kde3/kded_kpasswdserver.la
/usr/lib/kde3/kded_kpasswdserver.so
/usr/lib/ruby/1.8/webrick/httpauth/htpasswd.rb
/usr/bin/vncpasswd
/usr/bin/userpasswd
/usr/bin/yppasswd
…………

4、find
语法:
[root@redhat ~]# find 路径 参数
参数说明:
时间查找参数:
-atime n :将n*24小时内存取过的的文件列出来
-ctime n :将n*24小时内改变、新增的文件或者目录列出来
-mtime n :将n*24小时内修改过的文件或者目录列出来
-newer file :把比file还要新的文件列出来
名称查找参数:
-gid n :寻找群组ID为n的文件
-group name :寻找群组名称为name的文件
-uid n :寻找拥有者ID为n的文件
-user name :寻找用户者名称为name的文件
-name file :寻找文件名为file的文件(可以使用通配符)
例如:
[root@redhat ~]# find / -name zgz
/home/zgz
/home/zgz/zgz
/home/weblogic/bea/user_projects/domains/zgz
/home/oracle/product/10g/cfgtoollogs/dbca/zgz
/home/oracle/product/10g/cfgtoollogs/emca/zgz
/home/oracle/oradata/zgz

[root@redhat ~]# find / -name '*zgz*'
/home/zgz
/home/zgz/zgz1
/home/zgz/zgzdirzgz
/home/zgz/zgz
/home/zgz/zgzdir
/home/weblogic/bea/user_projects/domains/zgz
/home/weblogic/bea/user_projects/domains/zgz/zgz.log00006
/home/weblogic/bea/user_projects/domains/zgz/zgz.log00002
/home/weblogic/bea/user_projects/domains/zgz/zgz.log00004
/home/weblogic/bea/user_projects/domains/zgz/zgz.log
/home/weblogic/bea/user_projects/domains/zgz/zgz.log00008
/home/weblogic/bea/user_projects/domains/zgz/zgz.log00005

当我们用whereis和locate无法查找到我们需要的文件时,可以使用find,但是find是在硬盘上遍历查找,因此非常消耗硬盘的资源,而且效率也非常低,因此建议大家优先使用whereis和locate。
locate 是在数据库里查找,数据库大至每天更新一次。
whereis 可以找到可执行明令和man page
find 就是根据条件查找文件。
which 可以找到可执行文件和别名(alias)

分享到:
评论
发表评论

文章已被作者锁定,不允许评论。

相关推荐

    which,whereis,locate,find的用法与区别

    本文将详细介绍 `which`, `whereis`, `locate` 和 `find` 这四个命令的用法与区别。 #### 二、`which` 命令 `which` 命令用于查找可执行文件的位置。当您想要知道某个命令或脚本文件具体位于系统中的哪个目录时,`...

    Linux下which、whereis、locate、find 命令的区别

    ### Linux下which、whereis、locate、find命令的详细区别及应用 #### 1. which命令 `which`命令主要用于查找可执行文件的位置。当您不确定一个命令或程序的完整路径时,`which`可以帮助您快速定位其所在位置。这个...

    linux下which、whereis、locate、find命令的区别.docx

    本文将详细介绍`which`、`whereis`、`locate`、`find`这四个命令的区别,并通过具体示例进行对比,帮助读者更好地理解这些命令的功能及应用场景。 ### 1. `which` 命令 `which` 命令用于查找用户可执行命令的完整...

    Linux下的文件查找类命令.pdf

    find 命令是 Linux 中一个功能强大且使用频繁的文件查找命令。find 命令可以根据文件的名称、大小、时间戳、权限等属性来查找文件。例如,查找用户家目录下的所有文件,可以使用以下命令: $ find ~ -type f Linux...

    Linux的五个查找命令.pdf

    find命令是在Linux中非常强大的文件查找工具,能够帮助用户在指定目录及其子目录下查找符合特定条件的文件。find命令的基本格式如下: ``` $ find &lt;搜索路径&gt; &lt;匹配条件&gt; &lt;执行动作&gt; ``` - `&lt;搜索路径&gt;`指定了查找的...

    Linux系统配置及服务管理:文件查找

    在linux中,关于文件查找有如下三种命令: which 、find 、 locate 。其中find是应用最多,也是今天为大家着重介绍的命令。 which:用于命令查找。(which is 或者 whereis vim ) locate:文件查找,依赖数据库。 ...

    Linux基础命令第二周练习

    3. locate 命令:该命令与 whereis 类似,是通过查找预先生成的文件列表后可直接跟文件名。 4. find 命令:用于查找文件,find 命令可以根据文件的访问时间、修改时间、文件名、文件类型等条件来查找文件。 四、...

    云计算Linux文件查找与压缩干货

    一、命令文件查找 一、查找ls 命令的位置 # which ls //从PATH环境变量 或者 # whereis vim 二、任意文件 find 语法 find [path...] [options] [expression] [action] 命令 路径 选项 ...

    Linux常见命令与shell脚本

    1.24 whereis和which查找命令所在目录 13 1.25 grep搜索文件内容 13 1.26 tar文档管理 14 1.27 gzip/gunzip 和 bzip2/bunzip2文件压缩/解压缩 15 1.28 unzip winzip文件解压缩 17 1.29 其他常用命令 17 2 vi编辑器 ...

    第6章linux系统查找

    在Linux系统中,查找文件和命令是日常操作的重要部分,本章主要介绍四个常用的查找工具:`which`、`whereis`、`locate`和`find`,它们各自有不同的特性和用途。 首先,`which`命令用于查找指定的可执行程序或文件。...

    Linux系统中怎么搜索文件命令大全.docx

    `find`命令是Linux中最强大的文件查找工具,它可以按照多种条件来查找文件。以下是一些基本用法: - **根据文件名查找**:使用`-name`选项。例如,`find /t3 -name file1`会在 `/t3` 目录下查找名为 `file1` 的...

    linux查看目录方法

    本文将详细介绍四个主要的命令,帮助用户在 Linux 环境下有效地查找目录或文件:`find`、`locate`、`which` 和 `whereis`。 1. **find 命令** `find` 是 Linux 中最强大的文件查找工具,它允许用户基于各种条件来...

    Linux教程,主要内容:Linux 命令、Linux 系统运维、软件运维、精选常用Shell脚本

    查看 Linux 命令帮助信息 - 关键词:help, whatis, info, which, whereis, man Linux 文件目录管理 - 关键词:cd, ls, pwd, mkdir, rmdir, tree, touch, ln, rename, stat, file, chmod, chown, locate, find, cp, ...

    Linux which命令的具体使用

    我们经常在linux要查找某个文件,但不知道放在哪里了,可以使用下面的一些命令来搜索: which 查看可执行文件的位置。 whereis 查看文件的位置。 locate 配合数据库查看文件位置。 find 实际搜寻硬盘查询文件...

    Linux教程,主要内容:Linux 命令、Linux 系统运维、软件运维、精选常用Shell脚本.zip

    查看 Linux 命令帮助信息 - 关键词:help, whatis, info, which, whereis, man Linux 文件目录管理 - 关键词:cd, ls, pwd, mkdir, rmdir, tree, touch, ln, rename, stat, file, chmod, chown, locate, find, cp, ...

    linux命令.txt

    `whereis` 命令用于查找二进制文件、源代码文件和手册页的位置。 **使用场景:** 当用户需要快速找到某个命令的位置时,使用 `whereis` 命令非常便捷。 #### 三十二、locate **命令功能:** `locate` 命令用于...

    两周Linux学习总结

    * 命令 whereis:用于查找文件,whereis 命令可以查找指定的文件。 * 命令 locate:用于查找文件,locate 命令可以查找指定的文件。 * 命令 find:用于查找文件,find 命令可以查找指定的文件,并支持多种搜索条件。...

    Linux中的文件查找

    命令文件查找 查找ls 命令的位置 #which ls //从PATH环境变量 或者 #whereis vim 任意文检查找find 语法 find [path…] [options] [expression] [action] 命令 路径 选项 表达式 动作 按文件名查找: [root@cyb ~]#...

    linux入门命令(linux 基本命令)

    3. **专门查找可执行程序**: 使用 `whereis` 命令查找可执行程序的位置、源代码和帮助文档。 4. **快速查找文件**: 使用 `locate` 命令快速查找文件,它基于已建立的数据库进行搜索。 5. **环境变量中的查找**: 使用...

    红旗linux基本命令练习宣贯.pdf

    man 命令:man 命令用于显示Linux命令的帮助手册。使用方法:man &lt;命令名&gt;,显示指定命令的帮助手册。 locale 命令:locale 命令用于显示或设置当前系统的语言环境。使用方法:locale,显示当前系统的语言环境;...

Global site tag (gtag.js) - Google Analytics