Comment 14 for bug 303587

Revision history for this message
Jorrit Kronjee (jorrit-wafel) wrote :

This problem occurs when address space randomization is enabled (which is enabled by default on newer kernels). When this option is set to 0 or 1, the error does not occur (default is 2). As a workaround, you should add the following line to /etc/sysctl.conf:

kernel.randomize_va_space = 1

After that, run sysctl -p

Good luck!