This commit is contained in:
Patrick Schleizer 2023-10-22 16:22:08 -04:00
parent 9a649ddd09
commit f6d1346e2b
No known key found for this signature in database
GPG Key ID: CB8D50BB77BB3C48

View File

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