mirror of
https://github.com/fruworg/fruworg.github.io.git
synced 2024-11-16 17:37:17 +03:00
Create ubuntu-apparmor-disable.md
This commit is contained in:
parent
5429fe9431
commit
60acdc72cc
29
content/posts/ubuntu-apparmor-disable.md
Normal file
29
content/posts/ubuntu-apparmor-disable.md
Normal 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
|
||||||
|
```
|
Loading…
Reference in New Issue
Block a user