Today I was surprised to ssh
into my box running Arch Linux and find that /run/user/$(id -u)
didn't exist.
The XDG Base Directory Specification says:
$XDG_RUNTIME_DIR
defines the base directory relative to which user-specific non-essential runtime files and other file objects (such as sockets, named pipes, ...) should be stored. The directory MUST be owned by the user, and he MUST be the only one having read and write access to it. Its Unix access mode MUST be0700
.The lifetime of the directory MUST be bound to the user being logged in. It MUST be created when the user first logs in and if the user fully logs out the directory MUST be removed. If the user logs in more than once he should get pointed to the same directory, and it is mandatory that the directory continues to exist from his first login to his last logout on the system, and not removed in between. Files in the directory MUST not survive reboot or a full logout/login cycle.
On a systemd
box, is /run/user/$(id -u)
the preferred place for $XDG_RUNTIME_DIR
(even if it needs to be created?)
If not, what's best practice for creating $XDG_RUNTIME_DIR
?
How do I ensure that that the directory is deleted only when I have "fully" logged out?
(Does "fully" mean that mean all processes created by login shells have exited? How to check for that?)
mosh
, and your 2nd last link explains why the/usr/run/N
directory is not created.However, my question is about working around this, eg manually creating the directory that
– Tom Hale Oct 22 '18 at 15:11systemd
would otherwise create from a shell login script.