<返回更多

WSL2 中使用 systemctl 命令

2020-12-10    
加入收藏

在 WSL2 中安装完成 centos 系统后,基于 systemctl 或 service 命令的服务无法运行,比如 Nginx php-fpm MySQL 等,于是在前文中采用了编译的方式安装了这些服务软件。本次尝试一下在 WSL2 中运行 systemctl 命令的方法。

WSL2子系统安装CentOS8及源码编译安装Nginx1.18+PHP7.4+MySql8.0

一、安装 chocolatey 和 LxRunOffline

Chocolatey 是一个 windows 包管理工具,LxRunOffline 是一个 WSL 的管理软件。用 choco 安装 LxRunOffine ,然后用 LxRunOffline 安装各种版本的 linux 镜像。

详细安装方法见:https://zhuanlan.zhihu.com/p/188505502

在 Windows 10 中以管理员身份运行 PowerShell,安装 Chocolatey :

Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))

使用 choco 命令安装 LxRunOffline

choco upgrade lxrunoffline

choco 其它命令如下:

choco -v 查看 choco 版本

choco list -li 查看本地安装的软件

choco search nodejs 查找安装包

choco install sublimetext3 下载

choco uninstall sublimetext3 卸载

choco upgrade sublimetext3 更新升级(update)

choco upgrade chocolatey 更新升级 chocolatey 自己

二、下载 适用于 WSL 的 Linux 发行版镜像

Linux 发行版镜像可以到 hub.Docker.com 去找,参考:

https://github.com/RoliSoft/WSL-Distribution-Switcher

以 CentOS 为例,打开 https://hub.docker.com/_/centos/

下载 CentOS8 镜像:

https://github.com/CentOS/sig-cloud-instance-images/blob/CentOS-8-x86_64/docker/centos-8-x86_64.tar.xz

三、安装 CentOS 镜像

重新启动 PowerShell,输入命令安装 CentOS 镜像:

LxRunOffline install -n CentOS_A -d f:/CentOS_A -f G:centos-8-x86_64.tar.xz

这行命令表示将 CentOS 系统安装到 C 盘的 centos 文件夹下,并且命名为 centos。注意:Windows 系统命令行中的文件路径和 Linux 系统不同,这里安装目录 f:/ 要用 Linux 方式的反斜线表示,是为了 WSL 使用;而安装包路径 G: 是为了 LxRunOffline 使用,是 Windows 下的路径。

四、转换为 WSL2

输入命令并回车,列出已经安装的 WSL 以及对应的版本。

wsl -l -v

将对应的 WSL 发行版设为 WSL2,命令:

wsl --set-version CentOS_A 2

五、安装 CentOS 中的常用工具

1、安装 wget vim 等工具

cd ~ #转到用户目录
dnf -y install vim wget
dnf -y install net-tools #启用 ifconfig,netstat 等网络 命令
dnf -y install git
dnf -y install make
def -y install initscripts #启用 service 命令

2、更换国内源

(1) 备份原始的yum源

cd /etc/yum.repos.d
mv CentOS-Base.repo CentOS-Base.repo.bak
mv CentOS-Extras.repo CentOS-Extras.repo.bak
mv CentOS-centosplus.repo CentOS-centosplus.repo.bak
mv CentOS-PowerTools.repo CentOS-PowerTools.repo.bak
mv CentOS-AppStream.repo CentOS-AppStream.repo.bak

(2) 下载对应版本的repo文件

# wget -O CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-8.repo
vim CentOS-Base.repo

可以看到 aliyun 的源包含的以下各项:[base] [extras] [centosplus] [PowerTools] [AppStream] ,因此前面对这些源都做了备份。

(3) 清除旧的缓存并生成新的缓存

# dnf clean all
# dnf makecache

六、WSL2 与 systemd 进程

WSL2 本身是由 Windows 负责运行的,因此使用 tree 或 ps 命令时会看到根进程不是 systemd,这将导致无法启动 Linux 系统服务的守护进程(deamon)。当我们执行 systemctl 命令的时候,会显示出我们的 init system (PID 1) 并非 systemd,而是微软提供的 /init。

$ systemctl
System has not been booted with systemd as init system (PID 1). Can't operate.
Failed to connect to bus: Host is down
$ ps u -q 1
USER         PID %CPU %MEM    VSZ   RSS TTY      STAT START   TIME COMMAND
root           1  0.0  0.0    908   592 ?        Sl   10:31   0:00 /init

或许在以后 WSL 的原生 systemd 都会实现,但是现在我们如果想要拥有一个 systemd 环境的话,该怎么办呢?

由于 systemd 必须以 PID 1 的方式执行,所以不能直接执行 systemd ,但是利用 Linux Namespace 让我们可以在 WSL2 中建立一个新的 Namespace 并把 systemd 作为 PID 1 来执行。也就是在 WSL2 中再多加一层 PID Namespace,使得我们可以在这个新的 Namespace 中运行 systemd 环境。

七、配置 genie ,运行 systemctl 命令

1、安装 .NET Core SDK 3.1

dnf install dotnet-sdk-3.1

2、安装依赖 daemonize

cd /home

wget http://repo.okay.com.mx/centos/8/x86_64/release/daemonize-1.7.8-1.el8.x86_64.rpm

rpm -ivh daemonize-1.7.8-1.el8.x86_64.rpm

如果不安装,在运行 genie 时会报错,提示:找不到 daemonize

3、安装genie

git clone https://github.com/arkane-systems/genie.git
cd genie/genie
make
make install
ln -s /usr/libexec/genie/main/genie /usr/local/bin/genie

vim Makefile 查看安装脚本,默认安装目录是 /usr/libexec/genie,没有配置软链接,因此在最后一步使用 ln 命令增加了软链接。

现在就可以借助 genie 运行 systemctl 命令了。

4、genie 的使用

genie 有三个指令:

genie -i 启动 systemd 进程
genie -s 启动 systemd 进程,并进入该环境终端
genie -c <command> 启动 systemd 进程,并执行相应的指令

示例:安装 openssh 并运行

dnf install openssh-server
genie -c systemctl start sshd

5、使用 pstree 命令查看进程树

dnf -y install psmisc #安装pstree
pstree -ap #查看进程树

可以看到由守护进程 unshare 下的 systemd 空间,将会运行所有的 systemd 进程。

WSL2 中使用 systemctl 命令

 

此时,使用 ssh 客户端,可以登录这个 CentOS 系统。

另外使用命令: genie systemctl enable sshd,不能实现开机启动。

八、感受

利用第三方工具 genie ,完成了在 WSL 中运行 systemctl 的研究与实践,实现了在 WSL Linux 系统中运行 systemctl 命令的效果,但实际使用中总觉得别扭,我个人最终选择,还是老老实实编译安装 nginx mysql 等服务软件吧!

 

参考:https://www.oyohyee.com/post/note_wsl2_systemd

http://blog.davy.tw/tags/linux/

https://github.com/arkane-systems/genie

https://github.com/DamionGans/ubuntu-wsl2-systemd-script

声明:本站部分内容来自互联网,如有版权侵犯或其他问题请与我们联系,我们将立即删除或处理。
▍相关推荐
更多资讯 >>>