浏览由 updatedb 创建的文件数据库(定位)?

浏览由 updatedb 创建的文件数据库(定位)?

使用索引外部驱动器updatedb -l 0 -o db_file -U source_directory我想知道是否已经有像 Nautilus 这样的(GUI)浏览器来导航离线通过索引文件。

注意:locate -d DB .提供完整的文件列表。

另外:数据库——sqlite 是什么格式?

答案1

我不确定你的意思离线但是,如果您将您的写入db_file到始终安装的位置,即使未安装索引驱动器,您也应该能够搜索它。

DB 是 mlocate 格式,似乎没有足够的额外信息来提供 GUI。以下是我调查的内容(使用来源,卢克!):

# Where is the locate executable?
type -p locate
# What type of file is it?
file $( type -p locate )
# follow the links
file /etc/alternatives/locate
# 
file /usr/bin/mlocate
# Which package owns /usr/bin/mlocate?
dpkg -S /usr/bin/mlocate
# I keep sources in this directory tree
cd src
# install the apt-src package
sudo apt-get install apt-src
# get the source for mlocate
apt-src install mlocate
# inspect mlocate
cd mlocate-0.23.1/
ls
ls src
less src/*
ls doc
man doc/mlocate.db.5 
# clean up
cd ..
apt-src remove mlocate

相关内容