文件搜索命令:locate
locate 文件名 --在后台数据库中按文件名搜索,搜索速度更快,只能根据文件名搜索,功能单一 /var/lib/mlocate --locate命令所搜索的后台数据库 updatedb --更新数据库
[root@localhost ~]# ls anaconda-ks.cfg binaries binaries.tar.gz initial-setup-ks.cfg test123 [root@localhost ~]# locate anaconda-ks.cfg /root/anaconda-ks.cfg [root@localhost ~]# touch test3 [root@localhost ~]# locate test3 --后台数据库不是实时更新,更新频率为一天一次 [root@localhost ~]# updatedb --更新数据库 [root@localhost ~]# locate test3 /root/test3
locate文件遵守/etc/update.conf配置文件。