Create ubuntu-apparmor-disable.md

This commit is contained in:
ruslan 2024-10-09 10:53:35 +02:00 committed by GitHub
parent 5429fe9431
commit 60acdc72cc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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
```