- 浏览: 140576 次
- 性别:
- 来自: 成都
文章分类
最新评论
【基本介绍】
这里我们介绍locate命令,用来查找文件。
【安装配置】
安装mlocate
生成db数据文件
用locate进行查找
【参考引用】
https://www.digitalocean.com/community/tutorials/how-to-use-find-and-locate-to-search-for-files-on-a-linux-vps
这里我们介绍locate命令,用来查找文件。
【安装配置】
安装mlocate
yum install mlocate
生成db数据文件
[root@root ~]# updatedb [root@root ~]# ls /var/lib/mlocate/mlocate.db /var/lib/mlocate/mlocate.db
用locate进行查找
[root@root tmp]# locate 6385.conf /etc/redis/6385.conf
【参考引用】
https://www.digitalocean.com/community/tutorials/how-to-use-find-and-locate-to-search-for-files-on-a-linux-vps
发表评论
-
linux shell - 远端修改非root密码
2015-01-09 20:40 999【基本介绍】 通过远端修改普通用户密码,而passwd --s ... -
linux shell - broken pip error
2015-01-07 15:36 2753【基本介绍】 这里我们介绍发生broken pipe错误的原因 ... -
linux ssh - GSSAPIAuthentication
2014-12-10 14:58 2117【基本介绍】 最近公司搬家,发现合作伙伴的服务器的用ftp工具 ... -
linux tar - 压缩解压
2014-12-01 16:04 1019【基本介绍】 今天遇到要添加文件到tar文件里面,所以在这里介 ... -
linux parameter substitution - 字符串/变量处理
2014-11-17 15:56 817【基本介绍】 这里我们介绍bash里面对字符串,变量等的替换等 ... -
linux netstat - status状态描述
2014-11-14 17:59 1159【基本介绍】 这里介绍netstat命令返回的结果status ... -
linux set - set variables and set positional parameters
2014-11-10 18:26 434【基本介绍】 set是shell的内置命令。可以用来设置修改变 ... -
linux nc - arbitrary TCP and UDP connections and listens
2014-10-31 17:46 808【基本介绍】 nc是可以打开任意端口的TCP/UDP连接和监听 ... -
linux 报错集 - Cannot retrieve metalink for repository: epel. Please verify its pat
2014-10-29 15:12 958【基本介绍】 运行yum报错Error: Cannot ret ... -
linux awk - awk tutorial
2014-10-21 10:47 507【基本介绍】 awk是一款强大的对文件内容进行处理的软件,可以 ... -
linux ps - processes
2014-10-20 14:17 1262【基本介绍】 ps - report a snapshot o ... -
linux lsof - list open files
2014-10-17 17:31 760【基本介绍】 lsof - list open files I ... -
linux - 网络连接状态
2014-10-13 11:00 1403【基本情况】 这里介绍 ... -
linux netstat - Print network connections, routing tables, interface statistics,
2014-10-13 10:37 1017【基本介绍】 netstat - Print network ... -
linux vmstat - Report virtual memory statistics
2014-10-10 17:39 733【基本介绍】 vmstat - Report virtual ... -
linux yum - yum warning: rpmts_HdrFromFdno
2014-10-09 15:08 605【基本介绍】 在yum安装软件的时候有时候会报warning: ... -
Linux ip subnet mask - 网段分析
2014-09-24 19:22 1371【基本介绍】 网段的分析可以帮助我们查看两个局域地址是否可以互 ... -
linux curl - curl 上传下载
2014-09-19 11:45 2125【基本介绍】 curl is a tool to tra ... -
linux mkpasswd - 密码生成器
2014-09-18 17:18 1416【基本介绍】 作为linux admin要经常创建用户,并初始 ... -
linux dd - dd测试硬盘速度
2014-09-05 18:42 852【基本介绍】 这里我们使用dd命令来测试硬盘的读写速度 dd ...
相关推荐
- **find /dir/ -name name***:在指定目录`/dir/`下查找所有以`name`开头的文件。 - **find /dir/ -user name**:在指定目录`/dir/`下查找所有属于用户`name`的文件。 - **find /dir/ -mmin -num**:在指定目录`/...
find /home/user1 -name \*.bin 在目录 '/ home/user1' 中搜索带有'.bin' 结尾的文件 find /usr/bin -type f -atime +100 搜索在过去100天内未被使用过的执行文件 find /usr/bin -type f -mtime -10 搜索在10天内...
- **命令**: `find /etc -name "passwd*" -exec grep "xuesong" {} \;` - 示例: `find /etc -name "passwd*" -exec grep "xuesong" {} \;` **14. 查找文件名,不取路径** - **命令**: `find . -name 't*' -exec ...
- `find / -name "passwd"` 在根目录下查找名为 `passwd` 的文件; - `locate filename` 快速定位文件位置。 **4. 其他常用命令:** - `df` 命令用于查看磁盘空间使用情况。 - `du` 命令用于估算文件或目录所占的...
find /home/user -name "*.txt" # 在/home/user目录下查找所有扩展名为.txt的文件 find /path/to/dir -type d # 在指定目录下查找所有目录 ``` ##### 20. **locate命令** —— 快速查找文件或目录 - **功能**:...
这篇博文(虽然描述为空,但我们可以根据标题推测内容)可能探讨了如何利用Python编写脚本来调用和集成Linux的搜索命令,如`find`, `grep`, `locate`等。这些命令在日常开发和系统管理中非常常用,能够帮助我们快速...
`locate`命令快速查找文件路径,通常比`find`命令更快。 - **更新数据库**:`updatedb`。 - **查找文件**:`locate filename`。 #### 19. tar `tar`命令用于打包和解包文件,常用于备份和压缩。 - **打包文件**:...
### Linux系统常用操作命令大全手册知识点详解 #### 文件管理 - **`ls`**:用于显示当前目录下的文件和子目录列表。 - **`ls -l`**:以长格式显示文件详细信息,如权限、链接数、拥有者、大小等。 - **`ls -a`**:...
- 示例:`find /etc -name "*.conf"`,这里将在 /etc 目录下查找所有扩展名为 .conf 的文件。 10. **ln**:创建硬链接或符号链接。 - 示例:`ln -s target linkname`,其中 `-s` 表示创建符号链接。 11. **...
在Linux操作系统环境下,虽然有多种文件查找方法,如文件管理器、`find`命令和`locate`命令,但在面对大量文件时,这些方法往往无法满足快速、准确的搜索需求。因此,设计并实现一个轻量级的本地文件快速搜索工具...
已经发现的问题是执行 find,不返回 (hd0);精简 PE 加载映像文件死机。 2.解决了FDD 模式的 u 盘,执行 find 时返回 (fd0,n) 的问题。 3.修正了 menu.lst 中 0PE.ISO 的默认位置。 4.usb2.0 驱动通过菜单或...
- **Finding Files**: Searching for files based on name, type, size, and other criteria using `find`, `locate`, and `grep`. #### Chapter 5: Manipulating Text Text manipulation is a powerful feature in...
and name sum field (goCount name of field is unnecessary). TPrintDBGridEh component TPrintDBGridEh provides properties and routines for preview and print of TDBGridEh component with several ...
- 示例:`find /etc -name "http*"` - 在`/etc`目录下查找名称以`http`开头的文件。 2. **locate**:快速查找文件路径。 - 示例:`locate filename` - 快速查找文件`filename`的路径。 3. **wc**:统计文件的...
and name sum field (goCount name of field is unnecessary). TPrintDBGridEh component TPrintDBGridEh provides properties and routines for preview and print of TDBGridEh component with several ...
- **Find Files**: Use `find` to locate files based on various criteria. For example, `find . -type f -size +10k` finds all files larger than 10 KB in the current directory and its subdirectories. - **...
- `find`: 根据指定条件查找文件,如`find /etc -name "sh*"`查找/etc目录下以"sh"开头的文件。 4. **vim编辑器**: - `vim`: Linux下的文本编辑器,用于创建、编辑和修改文件。 - `:set nu`: 在vim中显示行号,...