当前位置:   article > 正文

报错Failed to connect to bus: Host is down

failed to connect to bus: host is down

想在WSL2中使用systemctl命令,报错Failed to connect to bus: Host is down

具体报错内容如下:

*****@********:~$ systemctl status network
System has not been booted with systemd as init system (PID 1). Can't operate.
Failed to connect to bus: Host is down
  • 1
  • 2
  • 3

报错原因:systemctl没安装或无法正常使用

以下是我搜索及实践的命令序列:

sudo apt -y install systemctl
# 报错 E: Unable to locate package systemctl
# 原因 没更新APT库

sudo apt-get update
# 报错 Certificate verification failed: The certificate is NOT trusted. The certificate chain uses expired certificate.
# 原因 证书错误

sudo vi /etc/apt/sources.list
# 操作 将镜像源的https改成http

sudo apt-get update
sudo apt -y install systemctl
# 报错 E: Essential packages were removed and -y was used without --allow-remove-essential.

sudo apt-get install systemctl
# 输入Yes, do as I say! 成功安装
systemctl --type=service
# 成功!!!
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19

事后,经过查询,发现直接把镜像源的https改成http,不安全,于是

sudo apt-get install ca-certificates
# 安装ca-certifivates
sudo vi /etc/apt/sources.list
# 操作 把镜像源的http改成https
sudo apt-get update
# 更新apt库
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Li_阴宅/article/detail/1008490
推荐阅读
相关标签
  

闽ICP备14008679号