Answers:
这意味着您的某些服务无法启动。如果systemctl;
不带status
参数运行就可以看到它们。
他们应该表现出类似的东西,
loaded failed failed
或者,您可以使用systemctl --failed
来显示失败的服务
UNIT LOAD ACTIVE SUB DESCRIPTION
● postgresql@9.4-main.service loaded failed failed PostgreSQL Cluster 9.4-main
LOAD = Reflects whether the unit definition was properly loaded.
ACTIVE = The high-level unit activation state, i.e. generalization of SUB.
SUB = The low-level unit activation state, values depend on unit type.
为了解决这个问题,我使用类似以下的命令重新启动了失败的服务:
sudo systemctl restart postgresql@9.4-main.service
但是,它不适用于诸如systemd-initctl.service之类的服务。再次拔出并插入树莓派对我有用,但是我建议尝试手动重新启动服务。