To disable use of virtual syscalls,
add the argument vsyscall=none
to the default
GRUB 2 command line for the Linux operating system.
To ensure that vsyscall=none
is added as a kernel command line
argument to newly installed kernels, add vsyscall=none
to the
default Grub2 command line for Linux operating systems. Modify the line within
/etc/default/grub
as shown below:
GRUB_CMDLINE_LINUX="... vsyscall=none ..."
Run the following command to update command line for already installed kernels:# grubby --update-kernel=ALL --args="vsyscall=none"