Messages similar to the following are printed to the console and system log:
ld-linux-x86-64[2400]: segfault at 463c20 ip 000000000025a93f sp 00007fffbd2de788 error 6 in ld-2.9.so[243000+20000] ld-linux-x86-64[2516]: segfault at 6d7000 ip 00000000001fc57f sp 00007fff2ce712f8 error 6 in ld-2.9.so[1e4000+20000] ld-linux-x86-64[2517]: segfault at 6d7000 ip 000000000026357f sp 00007fffd57bfc48 error 6 in ld-2.9.so[24b000+20000] ld-linux-x86-64[2529] general protection ip:1e399b sp:7fff802ceea0 error:0 in ld-2.9.so[1e0000+20000] ld-linux-x86-64[2546]: segfault at aab6c5ae ip 000000000040295e sp 00007fffc7246db0 error 6 in b43-fwcutter[400000+4000]
This is a known bug in certain 64-bit Fedora 10 kernels:
https://bugzilla.redhat.com/show_bug.cgi?id=488449
The bug is triggered when the cron daemon executes /etc/cron.daily/prelink.
This bug has been fixed in kernel-2.6.27.21-170.2.56 and higher. The recommended solution is to upgrade the kernel.
The old workaround was to modify the call to the prelink utility in /etc/cron.daily/prelink from:
/usr/sbin/prelink -av $PRELINK_OPTS >> /var/log/prelink/prelink.log 2>&1 \
to:
setarch x86_64 -L /usr/sbin/prelink -av $PRELINK_OPTS >> /var/log/prelink/prelink.log 2>&1 \