每天午夜后的几分钟,updatedb.findutils 会运行以索引一些文件。这是一个程序,随 Ubuntu 一起提供。现在我想知道这个程序做了什么并找到了这个。
root 12500 12491 0 00:10 ? 00:00:00 /bin/sh /usr/bin/updatedb.findutils
root 12533 12500 0 00:10 ? 00:00:00 su nobody -s /bin/sh -c /usr/bin/find / -ignore_readdir_race \( -fstype NFS -o -fstype nfs -o -fstype nfs4 -o -fstype afs -o -fstype binfmt_misc -o -fstype proc -o -fstype smbfs -o -fstype autofs -o -fstype iso9660 -o -fstype ncpfs -o -fstype coda -o -fstype devpts -o -fstype ftpfs -o -fstype devfs -o -fstype mfs -o -fstype shfs -o -fstype sysfs -o -fstype cifs -o -fstype lustre_lite -o -fstype tmpfs -o -fstype usbfs -o -fstype udf -o -fstype ocfs2 -o -type d -regex '\(^/tmp$\)\|\(^/usr/tmp$\)\|\(^/var/tmp$\)\|\(^/afs$\)\|\(^/amd$\)\|\(^/alex$\)\|\(^/var/spool$\)\|\(^/sfs$\)\|\(^/media$\)\|\(^/var/lib/schroot/mount$\)' \) -prune -o -print0
如您所见,它定义了许多它想要(不)搜索的文件系统。有很多 tmp 空间、可交换媒体位置、网络位置和 FS,但还有一个奇怪的挂载点,对我来说没有任何意义:
\(^/alex$\)\
这个 /alex 在哪里使用?在哪里可以搜索此类信息(当然 stackoverflow 除外)?