Would you mind playing a bit with lsof and see what's opened on your system and what files are being used ?
A good start would be to just type 'lsof' and put the command output into a file for later examination
Code:
lsof > openfiles.txt
lsof will show up the command name, pid, user running as, and several other infos alongside the file names a process is accessing while running. Play with it, it's a nifty tool
Regards
Andy