mirror of
https://github.com/LCTT/TranslateProject.git
synced 2025-01-25 23:11:02 +08:00
PUB:20161123 How to find a file on a Linux VPS
@geekpi
This commit is contained in:
parent
c71bcce35f
commit
9aefbb4b44
@ -1,13 +1,13 @@
|
||||
如何在Linux VPS中查找一个文件
|
||||
如何在 Linux 中查找一个文件
|
||||
============================================================
|
||||
|
||||
![linux-find-command](https://www.rosehosting.com/blog/wp-content/uploads/2016/09/linux-find-command.png)
|
||||
|
||||
在 Linux 中使用命令行可能会非常不方便,尤其对于新手而言。没有 GUI,很难在不同文件夹间浏览,找到需要的文件。本篇教程中,我会展示如何在 **[Linux VPS][1]** 中查找特定的文件。
|
||||
对于新手而言,在 Linux 中使用命令行可能会非常不方便。没有图形界面,很难在不同文件夹间浏览,找到需要的文件。本篇教程中,我会展示如何在 Linux 中查找特定的文件。
|
||||
|
||||
第一步要做的是**[通过 SSH 连接到你的 Linux VPS][2]**。在Linux中查找文件有两种方法。一种是使用 `find` 命令,另外一种是使用 `locate` 命令。我们先看第一种。
|
||||
第一步要做的是**[通过 SSH 连接到你的 Linux][2]**。在 Linux 中查找文件有两种方法。一种是使用 `find` 命令,另外一种是使用 `locate` 命令。我们先看第一种。
|
||||
|
||||
### find命令
|
||||
### find 命令
|
||||
|
||||
使用 **Linux find 命令**可以用不同的搜索标准如名字、类型、所属人、大小等来搜索目录树。基本语法如下:
|
||||
|
||||
@ -21,9 +21,9 @@
|
||||
# find -name test.file
|
||||
```
|
||||
|
||||
命令会搜索整个目录树来查找名为 `test.file` 的文件,并且会提供位置。你可以使用你 VPS 上一个存在的文件名来尝试一下。
|
||||
命令会搜索整个目录树来查找名为 `test.file` 的文件,并且会提供其存放位置。你可以使用你 Linux 上一个存在的文件名来尝试一下。
|
||||
|
||||
find 命令有时会花费几分钟来查找整个目录树,尤其是如果系统中有很多文件和目录的话。要显著减少时间,你可以指定搜索的目录。比如,如果你知道 `/var` 中存在 `test.file`, 那就没有必要搜索其他目录。这样,你可以使用下面的命令:
|
||||
find 命令有时会花费几分钟来查找整个目录树,尤其是如果系统中有很多文件和目录的话。要显著减少时间,你可以指定搜索的目录。比如,如果你知道 `/var` 中存在 `test.file`,那就没有必要搜索其它目录。这样,你可以使用下面的命令:
|
||||
|
||||
```
|
||||
# find /var -name test.file
|
||||
@ -35,18 +35,18 @@ find 还可以根据时间、大小、所属人、权限等选项搜索文件。
|
||||
# man find
|
||||
```
|
||||
|
||||
### locate命令
|
||||
### locate 命令
|
||||
|
||||
要在Linux中使用`locate`命令,首先需要安装它。
|
||||
|
||||
如果你正在使用 **[Ubuntu VPS][3]**,运行下面的命令来安装 locate:
|
||||
如果你正在使用 Ubuntu,运行下面的命令来安装 locate:
|
||||
|
||||
```
|
||||
# apt-get update
|
||||
# apt-get install mlocate
|
||||
```
|
||||
|
||||
如果你使用的是 **[CentOS VPS][4]**,运行下面的命令来安装 locate:
|
||||
如果你使用的是 CentOS ,运行下面的命令来安装 locate:
|
||||
|
||||
```
|
||||
# yum install mlocate
|
||||
@ -58,13 +58,13 @@ locate 是一种比 find 更快的方式,因为它在数据库中查找文件
|
||||
# updatedb
|
||||
```
|
||||
|
||||
使用locate查找文件的语法:
|
||||
使用 locate 查找文件的语法:
|
||||
|
||||
```
|
||||
# locate test.file
|
||||
```
|
||||
|
||||
就像find命令一样,locate也有很多选项来过滤输出。要了解更多你可以查看**Linux Locate 命令**的手册。
|
||||
就像 find 命令一样,locate 也有很多选项来过滤输出。要了解更多你可以查看**Linux Locate 命令**的手册。
|
||||
|
||||
```
|
||||
# man locate
|
Loading…
Reference in New Issue
Block a user