Finding a directory in a Linux Terminal
Would you be looking for something like this?
find . -type d | grep DIRNAME
If you want to find a particular directory that might be anywhere on your computer, the following will work, but it might take a while.
find / -name DIRNAME -type d
If you have it installed, locate
is designed for this.
Google "man locate"