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