Skip to content

Instantly share code, notes, and snippets.

@buzztaiki
Last active November 22, 2024 02:22
Show Gist options
  • Save buzztaiki/49493e948f725be42b5ce799484e9690 to your computer and use it in GitHub Desktop.
Save buzztaiki/49493e948f725be42b5ce799484e9690 to your computer and use it in GitHub Desktop.
WSL2 で /tmp/.X11-unix/X0 や wayland-0 が消える問題対策

WSL2 で /tmp/.X11-unix/X0 が消える問題対策

どうやら、こんな事が起きてるらしい

  • WSL2 が boot した時に /mnt/wslg/.X11-unix/tmp/.X11-unix にマウントする
  • distro が起動した後 systemd が tmp.mount ターゲットを起動して /tmp が再マウントされる
    • Before=local-fs.target になってる
  • その結果、/tmp/.X11-unix が消えてしまう

対策

とりあえず解決策としては、/etc/fstab/tmp を書いてあげれば tmp.mount より優先されるから問題が解決するっぽい。

  • fstab は WSL が処理してくれる
  • /mnt/wslg/.X11-unix は fstab の後にマウントされる
  • tmp.mount/tmp があれば動かない

fstab:

# Static information about the filesystems.
# See fstab(5) for details.

# <file system> <dir> <type> <options> <dump> <pass>
tmpfs   /tmp            tmpfs   rw,nodev,nosuid,noatime 0       0
tmpfs   /var/tmp        tmpfs   rw,nodev,nosuid,noatime 0       0

関連

WSL2 で waynald-0 の UNIX ドメインソケットが消える対策

/run/user/<uid>/waynald-0 が消えるやつ。こんな事が起きてる。

  • WSL にユーザーが (最初に?) ログインした時に /run/user/<uid>/wayland-0/run/user/<uid>/pulse/native 等を /mnt/wslg/runtime-dir から symlink してる
  • その後 systemd で [email protected] -> [email protected] と動いて、[email protected]/usr/lib/systemd/systemd-user-runtime-dir を使って /run/user/<uid> を tmpdir でマウントする
  • WSL が作った user runtime-dir が上書きされて wayland-0 がなくなる。

対策

/usr/lib/systemd/systemd-user-runtime-dir が動かないようにすればいい。

cat <<EOF | sudo systemctl --stdin edit [email protected]
[Service]
ExecStart=
ExecStart=/bin/true
ExecStop=
ExecStop=/bin/true
EOF

[email protected] の mask だと [email protected] の起動に失敗するからやめた方が良い。

関連

@buzztaiki
Copy link
Author

/var/run/user/1000/wayland-0 がないのは [email protected] で上書きされるからっぽい。

けど、これを mask すると [email protected] が開始できなくて、それはそれで困る。

❯❯ cat /usr/lib/systemd/system/[email protected]
#  SPDX-License-Identifier: LGPL-2.1-or-later
#
#  This file is part of systemd.
#
#  systemd is free software; you can redistribute it and/or modify it
#  under the terms of the GNU Lesser General Public License as published by
#  the Free Software Foundation; either version 2.1 of the License, or
#  (at your option) any later version.

[Unit]
Description=User Manager for UID %i
Documentation=man:[email protected](5)
BindsTo=user-runtime-dir@%i.service
After=systemd-logind.service user-runtime-dir@%i.service dbus.service systemd-oomd.service
IgnoreOnIsolate=yes

@buzztaiki
Copy link
Author

buzztaiki commented Jul 22, 2024

@buzztaiki
Copy link
Author

user-runtime-dir@ はこれで回避できる。

❯❯ cat /etc/systemd/system/[email protected]/override.conf
[Service]
ExecStart=
ExecStart=/bin/true
ExecStop=
ExecStop=/bin/true

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment