/dev/core is a symbolic link to /proc/kcore which is read-only access to physical memory.
/proc/sys/net/core is a directory. Not real sure whats there but intution would lead me to believe it has something to do with the running state of the next item.
/usr/src/linux.../net/core is a directory containing the source for "core" functions for the "net" protocols.
You're right. None of these are core dumps. To avoid finding these in the future, restrict the find to files only. "find / -type f -name core -print". I should have done that the first time. My bad...
|