Here is the solution to disable apparmor on the system and it worked on my test system (not harmful since apparmor package is not installed):
Codesudo mkdir -p /etc/default/grub.d echo 'GRUB_CMDLINE_LINUX_DEFAULT="$GRUB_CMDLINE_LINUX_DEFAULT apparmor=0"' | sudo tee /etc/default/grub.d/apparmor.cfg sudo update-grub sudo reboot
Taken from: https://wiki.debian.org/AppArmor/HowToUse#Disable_AppArmor
This solution was effective for me as well. One point, of course, on my system there was no need to do the mkdir command as the grub.d directory already exists ...
Thanks ryecoaaron