# find / -name ‘squid’ -type d
# find / -name squid
# find / -iname squid.conf
Note:
the fist parameter “/” is where to look in this case “/” the entire system.
-name could be -iname to ignore case also -type is not mandatory
For more options
# man find