Linux

[Linux] systemctl 오류

Victory_HA 2021. 11. 2. 22:10

참고 : https://gist.github.com/alyleite/ca8b10581dbecd722d9dcc35b50d9b2b

sudo systemctl status 명령어 오류

  • sudo systemctl status 명령어 입력시 아래와 같은 오류메시지가 확인됐다.

오류 메시지

administrator@lsh:~$ sudo systemctl status
[sudo] password for administrator:
System has not been booted with systemd as init system (PID 1). Can't operate.
Failed to connect to bus: Host is down
  • 간단하게 해결하는 방법이 있다.
  • 아래 명령어를 차례대로 입력하면 해결된다.
$ sudo apt-get update && sudo apt-get install -yqq daemonize dbus-user-session fontconfig
$ sudo daemonize /usr/bin/unshare --fork --pid --mount-proc /lib/systemd/systemd --system-unit=basic.target
$ exec sudo nsenter -t $(pidof systemd) -a su - $LOGNAME
$ snap version