Mahmood Naderan a écrit : > System.map was in boot folder and I created a symbolic link to the required > folder. > But it didn't work. Here is what I did: > > mahmood@localhost:boot$ sudo ln -s System.map-2.6.32-25-generic > /lib/modules/2.6.32-25-generic/build/System.map > [sudo] password for mahmood: > mahmood@localhost:k10temp$ ls -l /lib/modules/2.6.32-25-generic/build/System.map > lrwxrwxrwx 1 root root 28 2010-10-26 11:34 > /lib/modules/2.6.32-25-generic/build/System.map > -> System.map-2.6.32-25-generic You did not create the symbolic link correctly. If the target is not an absolute path (starting with /) then it is relative to the directory containing the symlink. Here you created a symlink pointing to System.map-2.6.32-25-generic relatively to /lib/modules/2.6.32-25-generic/build/, i.e. pointing to /lib/modules/2.6.32-25-generic/build/System.map-2.6.32-25-generic instead of /boot/System.map-2.6.32-25-generic. Use an absolute path instead. $ ln -s /boot/System.map-2.6.32-25-generic /lib/modules/2.6.32-25-generic/build/System.map -- To unsubscribe from this list: send the line "unsubscribe linux-net" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html