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

32 lines
831 B
Markdown
Raw Normal View History

2022-07-08 07:17:42 +03:00
---
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)
```
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
```
### Решение
Решение достаточно простое
```
rm -rf /tmp/xdg/runtime-guest
```
И для профилактики, всё равно систему засоряет
```
rm -rf /home/guest/*
rm -rf /home/guest/.*
```