If you want to start search from root "/" , you will probably see output somethings like;
find: `/./proc/1731/fdinfo': Permission denied
find: `/./proc/2032/task/2032/fd': Permission denied
...
It's because of permission
to solve this;
1)You can use sudo command ;
sudo find /. -name 'toBeSearched.file'
it asks super user's password, when enter the password you will see result what you really want.
2)You can use redirect the Standard Error Ouput from (Generally Display/Screen) to some file and avoid seeing the error messages on the screen! redirect to a special file /dev/null ;
find /. -name 'toBeSearched.file' 2>/dev/null
3)You can use redirect the Standard Error Ouput from (Generally Display/Screen) to Standard output (Generally Display/Screen), then pipe with grep command with -v "invert" parameter to not to see the output lines which has 'Permission denied' word pairs;
find /. -name 'toBeSearched.file' 2>1 | grep -v 'Permission denied'