Configuré WSL 2 (Ubuntu) e instalé systemd (y systemd-sysv) allí. Después de eso, corrí:
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
Antes de instalar systemd
, actualicé ubuntu a 18.10 (usándolo sudo do-release-upgrade
varias veces)
Funcionó por un tiempo, pero ahora solo funciona como usuario normal. Como root, tengo
Failed to list units: Connection reset by peer
ante cualquier systemctl
comando.
Debido a esto, puedo, por ejemplo, verificar el estado de los servicios, pero no puedo habilitar/deshabilitar el inicio de este servicio ni iniciarlos/detenerlos.
También podría replicarlo en una instalación limpia:
Instalé Debian (WSL2) desde Microsoft Store
Ejecuté los siguientes comandos: sudo apt-get update -y sudo apt-get install -y dbus-x11 sudo apt-get install daemonize
Luego, ejecuté wsl --shutdown
en el host y ejecuté:
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
Después de eso, obtuve los mismos resultados:
systemctl
SUBDESCRIPCIÓN ACTIVA DE CARGA UNIDAD
proc-sys-fs-binfmt_misc.automount cargado activo ejecutando un archivo ejecutable arbitrario
sys-devices-LNXSYSTM:00-LNXSYBUS:00-ACPI0004:00-VMBUS:00-fc785225\x2d9131\x2d5661\x2dac0c\x2d3a157c61ae15-net-eth0.dispositivo cargado activo conectado /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. dispositivo cargado activo conectado 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.disco virtual cargado activo conectado
y así sucesivamente pero cuando corrí
sudo systemctl
Obtuve
No se pudieron enumerar las unidades: la conexión se restableció por parte del par
Otro ejemplo:
$ 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
[Especificaciones]
Salida de ver
en mi host:Microsoft Windows [Version 10.0.19013.1122]
Después de eso también instalé neofetch
en el sistema Debian (para mostrarles):
_,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._
`"""
Salida de 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
[Nota]
Es el mismo resultado si inicio el sistema y ejecuto
sudo daemonize /usr/bin/unshare --fork --pid --mount-proc /lib/systemd/systemd --system-unit=basic.target
sin
sudo mkdir -p /run/dbus
sudo dbus-daemon --system
Respuesta1
Esto es posible instalando systemd
de otra manera como se describeaquí. Primero, debe instalar git
, clonar este repositorio y ejecutar el instalador como se describe en el archivo 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
Después de eso, ejecuta wsl --shutdown
cmd e inicia WSL nuevamente.