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

32 lines
844 B
Markdown
Raw Normal View History

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