You are not logged in.
I am using GRUB2 as my bootloader and I would like to enable AppArmor. Although I edited "GRUB_CMDLINE_DEFAULT", it still does not start AppArmor. What to do now?
> aa-enabled
No - disabled at boot.
> nano /etc/default/grub
> cat /etc/default/grub
GRUB_DEFAULT=0
GRUB_TIMEOUT=5
GRUB_DISTRIBUTOR="Arch"
GRUB_CMDLINE_DEFAULT="apparmor=1 lsm=lockdown,yama,apparmor loglevel=3 quiet"
GRUB_CMDLINe_LINUX="... cryptdevice=UUID=...:root ..."
GRUB_TOP_LEVEL="/boot/vmlinuz-linux"
...
> reboot
> aa-enabled
No - disabled at boot.Offline
Compare cat /proc/cmdline
Editing /etc/default/grub does not apply the resulting configuration until you regenerate the actual config file GRUB uses with
grub-mkconfig -o /boot/grub/grub.cfgOffline