This commit is contained in:
Patrick Schleizer 2023-10-22 16:12:26 -04:00
parent 5182d7502b
commit 11382881b5
No known key found for this signature in database
GPG Key ID: CB8D50BB77BB3C48

View File

@ -3,8 +3,14 @@
## https://www.kicksecure.com/wiki/Security-misc#Remount_Secure ## https://www.kicksecure.com/wiki/Security-misc#Remount_Secure
## Re-mount with nodev, nosuid. ## Disable Remount Secure.
#GRUB_CMDLINE_LINUX="$GRUB_CMDLINE_LINUX remountsecure=1" #GRUB_CMDLINE_LINUX="$GRUB_CMDLINE_LINUX remountsecure="0"
## Re-mount with nodev, nosuid, noexec. ## Re-mount with nodev, nosuid only.
#GRUB_CMDLINE_LINUX="$GRUB_CMDLINE_LINUX remountsecure=noexec" #GRUB_CMDLINE_LINUX="$GRUB_CMDLINE_LINUX remountsecure="1"
## Re-mount with nodev, nosuid and most with noexec except for /home.
#GRUB_CMDLINE_LINUX="$GRUB_CMDLINE_LINUX remountsecure="2"
## Re-mount with nodev, nosuid and all with noexec including /home.
#GRUB_CMDLINE_LINUX="$GRUB_CMDLINE_LINUX remountsecure="3"