diff --git a/content/posts/porteus/xdg-runtime-guest-error/index.md b/content/posts/porteus/xdg-runtime-guest-error/index.md new file mode 100644 index 0000000..5283403 --- /dev/null +++ b/content/posts/porteus/xdg-runtime-guest-error/index.md @@ -0,0 +1,31 @@ +--- +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/.* +``` diff --git a/content/posts/porteus/xdg-runtime-guest-error/porteus-error.webp b/content/posts/porteus/xdg-runtime-guest-error/porteus-error.webp new file mode 100644 index 0000000..5705b65 Binary files /dev/null and b/content/posts/porteus/xdg-runtime-guest-error/porteus-error.webp differ