A repeat task to Linux core dump analysis is to find the corresponding kernel debuginfo package. When you extract the kernel version from the memory, the first question is which release the kernel is at. Then where to find the kernel debuginfo package that has the symbols and maybe also the source package. The most popular commercial Linux distributions are RHEL, SLES, Ubuntu and their relatives, so here is the guide to find those packages.
kernel: linux-image
symbol: linux-image-*-dbgsym
source: linux-source
ar -x linux-image-3.2.0-41-generic-dbgsym_3.2.0-41.66_amd64.ddeb
https://packages.debian.org/jessie/linux-image-3.16.0-4-amd64-dbg
kernel: kernel
source: kernel-debuginfo-common
symbol: kernel-debuginfo
rpm2cpio kernel-2.6.32-573.el6.x86_64.rpm | cpio -idmv
zypper search -s 'kernel-default'
zypper install --download-only --oldpackage kernel-default-debuginfo-3.0.101-0.15.1
# debuginfo package needs the kernel binary in SLES
zypper install --download-only --oldpackage kernel-default-base-3.0.101-0.15.1
# find the rpm in /var/cache/zypp/packages