linux lightdm.conf,lightDM(Light Display Manager)简介

方子安
2023-12-01

# lightDM(Light Display Manager)简介

`项目地址`:[https://github.com/canonical/lightdm](https://github.com/canonical/lightdm)

LightDM,是一个全新的、轻量的Linux桌面的桌面显示管理器,而传统的Ubuntu用的是GNOME桌面标准的GDM,其目的是成为 X org X 服务器的标准显示管理器。

相较于GDM-GTK、KDM-Qt、LightDM实际上与界面无关,它仅支持本地图形界面获得最好兼容性。

LightDM负责启动`X Server`,`用户会话(Session)`和`欢迎界面(Greeter)`。

国产的操作系统桌面环境很多使用了lightdm,如deepin、ukui。

## ukui-greeter

[https://github.com/ukui/ukui-greeter](https://github.com/ukui/ukui-greeter)

ukui的欢迎界面(用户登录与会话验证)是由qt基于lightdm开发。最先支持Ubuntu,现已支持debian、openeuler、archlinux等操作系统。

## deepin-greeter

[https://github.com/linuxdeepin/dde-session-shell/tree/master/src/lightdm-deepin-greeter](https://github.com/linuxdeepin/dde-session-shell/tree/master/src/lightdm-deepin-greeter)

## lightdm的优点

+ Cross-desktop - supports different desktop technologies.

+ Supports different display technologies (X, Mir, Wayland ...).

+ Lightweight - low memory usage and high performance.

+ Supports guest sessions.

+ Supports remote login (incoming - XDMCP, VNC, outgoing - XDMCP, pluggable).

+ Comprehensive test suite.

+ Low code complexity.

lightdm提供了一系列钩子,用户只需简单修改conf配置文件就可以灵活定制,如自定义主题、执行脚本等

```

/usr/share/lightdm/lightdm.conf.d/*.conf

/etc/lightdm/lightdm.conf.d/*.conf

/etc/lightdm/lightdm.conf

```

 类似资料: