From 60acdc72cc7a52244abfd3b0840d5b0427ae8682 Mon Sep 17 00:00:00 2001 From: ruslan Date: Wed, 9 Oct 2024 10:53:35 +0200 Subject: [PATCH] Create ubuntu-apparmor-disable.md --- content/posts/ubuntu-apparmor-disable.md | 29 ++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 content/posts/ubuntu-apparmor-disable.md 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 +```