Blog/content/posts/porteus/xdg-runtime-guest-error/index.md

32 lines
844 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: "🪲 Лечим ошибку /tmp/xdg-runtime-guest в Porteus"
date: 2022-07-08T06:58:34+03:00
draft: false
tags: [porteus, linux, error, tips]
---
После очередного перезапуска [Porteus](http://porteus.org/), у меня вылезла ошибка.
Запускал я не чистую систему, а из `savefile`.
![](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
```
### Решение
Решение достаточно простое
```sh
rm -rf /tmp/xdg/runtime-guest
```
И для профилактики, всё равно систему засоряет
```sh
rm -rf /home/guest/*
rm -rf /home/guest/.*
```