¿Qué es esto que me carga al iniciar el sistema?

Al iniciar el sistema, noto que va relentizado, y haciendo top, me sale que es un find el que consume los recursos, haciendo un ps, me sale esto:


sepho@debian:~$ ps -ax |grep find
Warning: bad syntax, perhaps a bogus '-'? See http://procps.sf.net/faq.html
630 ? SN 0:00 /bin/sh /etc/cron.daily/find
643 ? DN 0:11 /usr/bin/find / ( -fstype NFS -o -fstype nfs -o -fstype afs -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 -type d -regex \(^/tmp$\)\|\(^/usr/tmp$\)\|\(^/var/tmp$\)\|\(^/afs$\)\|\(^/amd$\)\|\(^/alex$\)\|\(^/var/spool$\)\|\(^/sfs$\) ) -prune -o -print
689 ttyp1 S 0:00 grep find
sepho@debian:~$


¿Para qué sirve??



Gracias [bye]
Igual me equivoco y "find" es un proceso que yo desconozco, pero "find" sirve para buscar ficheros. Ejemplo típico: $find / -name sepho (busca en / cualquier archivo que tenga como nombre sepho.

630 ? SN 0:00 /bin/sh /etc/cron.daily/find
Por lo que he visto tienes programado un "cron" diario ejecutando "find".

643 ? DN 0:11 /usr/bin/find / ( -fstype NFS -o -fstype nfs
Y tienes el proceso 643 usando "find /" todo el rato. Así es normal que vaya lento el ordenador.

¿Has estado jugando con el cron?


Saludos.
Nop, de hecho, he mirado ese archivo y pone:


#! /bin/sh
#
# cron script to update the `find.codes' database.
#
# Written by Ian A. Murdock and
# Kevin Dalley

if [ -f /etc/updatedb.conf ]; then
. /etc/updatedb.conf
fi

if getent passwd $LOCALUSER > /dev/null ; then
cd / && updatedb 2>/dev/null
else
echo "User $LOCALUSER does not exist."
exit 1
fi






Y tocar, no he tocado nada, aun asi nose si servirá de alguna utilidad, ya que si no sirve para nada, lo elimino y au.



Gracias [bye]
2 respuestas