diff --git a/content/posts/ubuntu-apparmor-disable.md b/content/posts/ubuntu-apparmor-disable.md new file mode 100644 index 0000000..5fe934d --- /dev/null +++ b/content/posts/ubuntu-apparmor-disable.md @@ -0,0 +1,29 @@ +--- +title: Отключение AppArmor в Ubuntu 24.04 +description: purge apparmor +date: 2024-10-09T10:51:00+02:00 +tags: [linux, astra, krb5] +--- +## Выключение сервиса + +```shell +systemctl disable --now apparmor +``` + +## Удаление AppArmor + +```shell +apt remove --assume-yes --purge apparmor +``` + +## Перезагрузка + +```shell +init 6 +``` + +## Одной командой + +```shell +systemctl disable --now apparmor && apt remove --assume-yes --purge apparmor && init 6 +```