fix code blocks

This commit is contained in:
2022-09-03 00:07:20 +03:00
parent 23fb7fb982
commit 91d80f9ff0
11 changed files with 27 additions and 35 deletions

View File

@ -10,7 +10,7 @@ tags: [porteus, linux, error, tips]
![](porteus-error.webp)
```
```text
INIT: Entering runlevel: 4
chown: changing ownership of `/tmp/xdg/runtime-guest`: Operation not permitted
chmod: changing permissions of `/tmp/xdg/runtime-guest`: Operation not permitted
@ -19,13 +19,13 @@ chmod: changing permissions of `/tmp/xdg/runtime-guest`: Operation not permitted
### Решение
Решение достаточно простое
```
```sh
rm -rf /tmp/xdg/runtime-guest
```
И для профилактики, всё равно систему засоряет
```
```sh
rm -rf /home/guest/*
rm -rf /home/guest/.*
```