I have an Ubuntu 14.04 server, and found that some processes are running with root privileges and takes all my processor time. The processes are called 'echo "find"'. What are these, and how can I stop them?
Asked
Active
Viewed 1,813 times
10
1 Answers
2
You can check its process ID, with ls -l /proc/1639
and trace its activity with sudo strace -p 1639
According to this thread it's a malware with root permissions.
Panagiotis Tabakis
- 2,131
pstree -sp 26709? – steeldriver Aug 05 '16 at 11:20sudo pkill echoshould find all processes running called echo and kill them, man pkill to check. You can scroll to a process in htop and do F9, then choose the signal to send, the default is SIGKILL I think. These seem weird, could be malware named "echo" doing something on files selected usingfind?? Agree with @steeldriver; perhaps your freshclam is doing this?? – pbhj Aug 11 '16 at 12:12