Try
find /path/to/search -type d -name 'DIRECTORY_NAME'. For example:
Code:
$ find /usr/ -type d -name 'doc'
/usr/share/vim/vim71/doc
/usr/share/qt3/doc
/usr/share/apps/pykdeextensions/app_templates/kdeapp/doc
/usr/share/apps/pykdeextensions/app_templates/kioslave/doc
/usr/share/apps/pykdeextensions/app_templates/kcontrol_module/doc
/usr/share/apps/pykdeextensions/app_templates/kdeutility/doc
/usr/share/doc
/usr/local/share/doc
/usr/lib/python2.5/doc
If you are uncertain about the upper case letters in the directory name then use the
-iname argument instead of
-name.
Lastly, be sure to try this: