This is not a duplicate. I want to change the following kernel parameters which I find in the default Linux kernel of Ubuntu 16.04LTS/32 4.4.0-59-generic:
CONFIG_MODULE_SIG=y
CONFIG_MODULE_SIG_ALL=y
CONFIG_MODULE_SIG_UEFI=y
CONFIG_MODULES_USE_ELF_REL=y
Of course I can recompile the kernel but I want to avoid it for several reasons. Can I change temporally or permanently grub like this:
GRUB_CMDLINE_LINUX=" … CONFIG_MODULE_SIG=n CONFIG_MODULE_SIG_ALL=n CONFIG_MODULE_SIG_UEFI=n CONFIG_MODULES_USE_ELF_REL=n"
Is this the correct way to do so or has this no effect on the kernel parameters?