WSL中使用systemctl报错问题

Posted kerwin cui

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WSL中使用systemctl报错问题相关的知识,希望对你有一定的参考价值。

Windows10里面自带的wsl中安装docker后不支持systemctl命令。需要更换命令,用Sysvinit的命令代替systemd,命令如下:

 

Systemd command Sysvinit command
systemctl start service_name service service_name start
systemctl stop service_name service service_name stop
systemctl restart service_name service service_name restart
systemctl status service_name service service_name status
systemctl enable service_name service service_name on
systemctl disable service_name service service_name off

 

以上是关于WSL中使用systemctl报错问题的主要内容,如果未能解决你的问题,请参考以下文章