script which nails the system on every boot /usr/sbin/find -fstype nfs ...
Dear users, Please I do need your help on this thing! How to stop the following script which starts after kde has loaded? I did a grep "\/usr\/sbin\/find" /etc/ -r -I and grep "\/usr\/sbin\/find" /usr/ -r -I but I was unable to find the daemon which runs the following script: Any help should be gratefully appreciated! su root -c /usr/bin/find / \( -fstype nfs -o -fstype NFS -o -fstype proc -o -fstype afs -o -fstype smbfs -o -fstype autofs -o -type d -regex '\(^/mnt$\)\|\(^/cdrom$\)\|\(^/tmp$\)\|\(^/usr /tmp$\)\|\(^/var/tmp$\)\|\(^/var/spool$\)\|\(^/proc$\)\|\(^/media$\)' \) -prune -o -print root 5815 5814 2 20:00 ? 00:00:03 /usr/bin/find / ( -fstype nfs -o -fstype NFS -o -fstype proc -o -fstype afs-o -fstype smbfs -o -fstype autofs -o -type d -regex \(^/mnt$\)\|\(^/cdrom$\)\|\(^/tmp$\)\|\(^/usr/tmp$\)\|\(^/var/tmp$\)\|\(^/var/spool$\)\|\(^/proc$\)\|\(^/media$\) ) -prune -o -print __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com
How to stop the following script which starts after kde has loaded? I did a
grep "\/usr\/sbin\/find" /etc/ -r -I
Correct idea for finding the script (though you won't have any luck with find in sbin), but the various bits of the final command are likely to be pieced together via some variables, so don't be surprised if some of the strings come from /etc/sysconfig/. grep -r follows symlinks and won't do you any good here either.
su root -c /usr/bin/find / \( -fstype nfs -o -fstype NFS -o -fstype proc -o -fstype afs -o -fstype smbfs -o -fstype autofs -o -type d -regex '\(^/mnt$\)\|\(^/cdrom$\)\|\(^/tmp$\)\|\(^/usr
The daily cron script. Not an AMD64-sepcific issue though. Volker -- Volker Kuhlmann is possibly list0570 with the domain in header http://volker.dnsalias.net/ Please do not CC list postings to me.
participants (2)
-
Simeon Nifos
-
Volker Kuhlmann