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

@ -11,7 +11,7 @@ tags: [linux, tips, porteus]
Вот, что выводится в терминале:
```
```sh
$ systemsettings5
QQmlEngine::setContextForObject(): Object already has a QQmlContext
file:///usr/share/kpackage/kcms/kcm_landingpage/contents/ui/main.qml:127:9: QML FormLayout (parent or ancestor of QQuickLayoutAttached): Binding loop detected for property "preferredHeight"
@ -32,7 +32,7 @@ Error loading the module "kcm_users" : invalid KPackage
Например было так:
```
```text
LABEL GRAPHICAL
MENU LABEL Graphics mode
KERNEL /boot/syslinux/vmlinuz
@ -45,7 +45,7 @@ ENDTEXT
А стало так:
```
```text
APPEND changes=/mnt/sda1/data.dat nologin
```
@ -57,7 +57,7 @@ APPEND changes=/mnt/sda1/data.dat nologin
Но у меня в Porteus 5.0 поле `User` уже было пустое.
```
```text
# cat /etc/sddm.conf.d/kde_settings.conf
[Autologin]
Relogin=false

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/.*
```