令人厌烦的查找操作在后台未经请求地运行

令人厌烦的查找操作在后台未经请求地运行

自从最近的更新以来,有一个进程正在破坏我的硬盘,现在每天至少发生一次,而且持续很长时间:

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

有人知道它是从哪里来的吗?我已经禁用了其他所有功能,但这个功能让我感到困惑。

谢谢

答案1

该过程似乎与 mlocate、locate 或 update.db cron 任务相关。

删除 /etc/cron.daily 中的所有作业似乎就足够了。

相关内容