View Single Post
Posts: 52 | Thanked: 33 times | Joined on Oct 2011 @ Poland, Tricity
#1119
Originally Posted by daniel_m View Post
I tried "grep -r "keyword" *" in root but I don't know if grep succeeded without finding anything or if it just quit. Conky showed high CPU usage by grep for some time and then grep disappeared ...
(I am not very experienced in Linux and I have big problems understanding the directory structure and where things are supposed to be ... too lazy to read it up yet ... )
Use:
Code:
find / -name '*operamobile*' 2>/dev/null
The `2>...` thing will stop some permission errors from showing.