mirror of
https://github.com/fruworg/fruworg.github.io.git
synced 2024-11-16 17:37:17 +03:00
30 lines
502 B
Markdown
30 lines
502 B
Markdown
|
---
|
||
|
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
|
||
|
```
|