Alternatively, as root
Code:
find / -type f -name 'BN*'
If you are only interested in files accessible to the current user then
Code:
find / -type f -name 'BN*' 2>/dev/null
The 2>/dev/null suppresses error messages about find not being able to read some parts of the file system(s).