Add support to disable address layout randomization in denoise
smarr opened this issue · 0 comments
smarr commented
See:
- https://notes.tweakblogs.net/blog/15291/temporarily-disabling-address-space-layout-randomization-on-linux
- https://askubuntu.com/questions/318315/how-can-i-temporarily-disable-aslr-address-space-layout-randomization
Roughly, for disabling it:
echo 0 | sudo tee /proc/sys/kernel/randomize_va_space
Should probably capture the current value.
But likely should be something like:
echo 2 | sudo tee /proc/sys/kernel/randomize_va_space