无法从GUI登录Ubuntu,但可以使用控制台。然后我尝试了
systemctl start lightdm
它显示
Unit lightdm.service not found.
重新安装lightdm后,得到相同的结果:找不到lightdm.service
我正在使用的Ubuntu应该是我昨天下载的最新版本。(2018年10月30日)
不确定怎么了,有建议吗?
答案 0 :(得分:0)
已确认:lightdm失败。我在用于ARMv7的Arch Linux上使用LXDE(不同的发行版,不同的体系结构)。我不知道这似乎是lightdm的上游问题,或与其他升级的软件包(即运行Linux 4.19)发生冲突,但这似乎不是发行版特定的问题。
extra/lightdm 1:1.28.0-1 [installed]
A lightweight display manager
lxdm
工作正常。我建议使用。另外,您可能想尝试使用systemctl enable lightdm
而不是start
。使用start
立即使我的Xorg服务器崩溃,但是enable
给了我一个看似很好的消息,但是在启动时无法加载。
我实际上找到了您的问题,因为我的安装脚本之一不起作用:
systemctl enable lightdm.service
我很快意识到当时我尚未在该系统上安装lightdm,并且打算继续使用lxdm。有趣的是,我一直以为我一直在使用lxdm。所以我将其更改为:
systemctl enable lxdm.service
可以正常工作。
以下是该记录的一些额外信息:
systemctl status lightdm
● lightdm.service - Light Display Manager
Loaded: loaded (/usr/lib/systemd/system/lightdm.service; disabled; vendor preset: disabled)
Active: failed (Result: exit-code) since Wed 2018-10-31 18:37:08 PDT; 13min ago
Docs: man:lightdm(1)
Main PID: 259 (code=exited, status=1/FAILURE)
Oct 31 18:37:08 hostname systemd[1]: lightdm.service: Service RestartSec=100ms expired, scheduling restart.
Oct 31 18:37:08 hostname systemd[1]: lightdm.service: Scheduled restart job, restart counter is at 5.
Oct 31 18:37:08 hostname systemd[1]: Stopped Light Display Manager.
Oct 31 18:37:08 hostname systemd[1]: lightdm.service: Start request repeated too quickly.
Oct 31 18:37:08 hostname systemd[1]: lightdm.service: Failed with result 'exit-code'.
Oct 31 18:37:08 hostname systemd[1]: Failed to start Light Display Manager.