Thread
:
Disabling VDSO
View Single Post
allnameswereout
2009-10-13 , 00:09
Posts: 3,397 | Thanked: 1,212 times | Joined on Jul 2008 @ Netherlands
#
9
Bah, all this isn't necessary. You don't have to play in your bootloader to disable VDSO32. Its just that the setting has been renamed.
All you have to do is execute
# sysctl abi.vsyscall32=0
or
if you prefer to use /proc
# echo 0>/proc/sys/abi/vsyscall32
To make this change permanent type
# echo abi.vsyscall32=0>>/etc/sysctl.conf
It will then be disabled even after reboot.
To check if VDSO32 is enabled execute
# sysctl abi.vsyscall32
or
if you prefer to /proc
# cat /proc/sys/abi/vsyscall32
Note this only works on 2.6.25+ x86-64!
__________________
Goosfraba!
All text written by allnameswereout is public domain unless stated otherwise. Thank you for sharing your output!
Last edited by allnameswereout; 2009-10-13 at
00:15
.
Quote & Reply
|
The Following 3 Users Say Thank You to allnameswereout For This Useful Post:
Cas07
,
pelago
,
TA-t3
allnameswereout
View Public Profile
Send a private message to allnameswereout
Find all posts by allnameswereout