以 root 身份在 systemctl 上被对方重置连接

以 root 身份在 systemctl 上被对方重置连接

我已经设置了 WSL 2 (Ubuntu),并在那里安装了 systemd (和 systemd-sysv)。之后,我运行了:

sudo mkdir -p /run/dbus
sudo dbus-daemon --system
sudo daemonize /usr/bin/unshare --fork --pid --mount-proc /lib/systemd/systemd --system-unit=basic.target

在安装之前systemd,我将 ubuntu 更新到了 18.10(使用sudo do-release-upgrade多次)

它工作了一段时间,但现在只能以普通用户身份工作。作为 root,我得到了

Failed to list units: Connection reset by peer

任何systemctl命令。

因此,我可以查看服务的状态,但无法启用/禁用该服务的启动或启动/停止它们。

我也可以在全新安装中复制它:

我从 Microsoft Store 安装了 Debian(WSL2)

我执行了以下命令: sudo apt-get update -y sudo apt-get install -y dbus-x11 sudo apt-get install daemonize

然后,我wsl --shutdown在主机上执行并运行:

sudo mkdir -p /run/dbus
sudo dbus-daemon --system
sudo daemonize /usr/bin/unshare --fork --pid --mount-proc /lib/systemd/systemd --system-unit=basic.target

此后,我得到了相同的结果:

systemctl

单位负荷活动子描述

proc-sys-fs-binfmt_misc.automount 加载正在运行的任意可执行文件

sys-devices-LNXSYSTM:00-LNXSYBUS:00-ACPI0004:00-VMBUS:00-fc785225\x2d9131\x2d5661\x2dac0c\x2d3a157c61ae15-net-eth0.device 已加载 活动插入 /sys/devices/LNXSYSTM:00/

sys-devices-LNXSYSTM:00-LNXSYBUS:00-ACPI0004:00-VMBUS:00-fd1d2cbd\x2dce7c\x2d535c\x2d966b\x2deb5f811c95f0-host0-target0:0:0-0:0:0:0-block-sda.device 已加载主动插入 Virtual_Disk sys-devices-LNXSYSTM:00-LNXSYBUS:00-ACPI0004:00-VMBUS:00-fd1d2cbd\x2dce7c\x2d535c\x2d966b\x2deb5f811c95f0-host0-target0:0:0-0:0:0:1-block-sdb.device 已加载主动插入 Virtual_Disk

等等,但是当我跑的时候

sudo systemctl

我有

无法列出单位:对等方重置连接

其他例子:

$ systemctl status dbus
● dbus.service - D-Bus System Message Bus
   Loaded: loaded (/lib/systemd/system/dbus.service; static; vendor preset: enabled)
   Active: active (running) since Fri 2019-12-13 17:56:36 CET; 13min ago
     Docs: man:dbus-daemon(1)
 Main PID: 110
    Tasks: 1 (limit: 4915)
   Memory: 1.2M
   CGroup: /system.slice/dbus.service
           └─110 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only

Dec 13 17:56:36 Daniellaptop systemd[1]: Started D-Bus System Message Bus.
$ sudo systemctl status dbus
Failed to get properties: Connection reset by peer

[规格]

ver我的主机上的输出:Microsoft Windows [Version 10.0.19013.1122]

之后我也在neofetchDebian 系统上安装了(为了向您展示):

       _,met$$$$$gg.          dan@Daniellaptop
    ,g$$$$$$$$$$$$$$$P.       ----------------
  ,g$$P"     """Y$$.".        OS: Debian GNU/Linux 10 (buster) on Windows 10 x86_64
 ,$$P'              `$$$.     Kernel: 4.19.79-microsoft-standard
',$$P       ,ggs.     `$$b:   Uptime: 9 mins
`d$$'     ,$P"'   .    $$$    Packages: 226 (dpkg)
 $$P      d$'     ,    $$P    Shell: bash 5.0.3
 $$:      $$.   -    ,d$$'    Terminal: /dev/pts/0
 $$;      Y$b._   _,d$P'      CPU: Intel i7-7500U (4) @ 2.903GHz
 Y$$.    `.`"Y$$$$P"'         Memory: 80MiB / 6868MiB
 `$$b      "-.__
  `Y$$
   `Y$$.
     `$$b.
       `Y$$b.
          `"Y$b._
              `"""

输出uname -a

Linux <hostname of the host> 4.19.79-microsoft-standard #1 SMP Mon Oct 14 00:50:46 UTC 2019 x86_64 GNU/Linux

[笔记]

如果我启动系统并运行,结果是一样的

sudo daemonize /usr/bin/unshare --fork --pid --mount-proc /lib/systemd/systemd --system-unit=basic.target

没有

sudo mkdir -p /run/dbus
sudo dbus-daemon --system

答案1

可以通过systemd按照所述其他方式进行安装来实现这里。首先,您需要安装git,克隆此存储库并按照中所述运行安装程序README.md

sudo apt update
sudo apt install -y git
git clone https://github.com/DamionGans/ubuntu-wsl2-systemd-script.git
cd ubuntu-wsl2-systemd-script/
bash ubuntu-wsl2-systemd-script.sh

之后,wsl --shutdown在cmd中运行并再次启动WSL。

相关内容