mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-04-01 23:04:15 +02:00
9 lines
352 B
Markdown
9 lines
352 B
Markdown
# Administration
|
|
|
|
## DANGER: Manuell deativation and deletion
|
|
Be carefull what you do. This code you can execute:
|
|
```
|
|
systemctl list-units --type=service | grep 'matrix' | awk '{print $1}' | xargs -I {} systemctl disable {} &&
|
|
systemctl list-units --type=service | grep 'matrix' | awk '{print $1}' | xargs -I {} systemctl stop {} &&
|
|
rm -rv /matrix/
|
|
``` |