在标准Debian版本上自动启动X-windows / gdm


12

我已经从Debian官方发行版中构建了一个可启动SD。

有什么简单的方法可以使GDM在计算机启动时自动启动(例如典型的Linux桌面)?

对于奖励积分,是否有办法使其自动登录?

Answers:


11

确实是的。

在启动时启动GDM

您需要编辑/etc/inittab,以便init知道在启动时就应该直接启动到运行级别5(默认为X11)。

初学者注意:以#代表注释开头的行。使用文件时,它们将被完全忽略。

本部分控制默认运行级别:

## Only one of the following two lines can be uncommented!
# Boot to console
# id:3:initdefault: # this line should be commented
# Boot to X11
id:5:initdefault:  # this line should be uncommented

然后,您需要告诉它启动运行级别5时要运行什么命令。本节控制以下内容:

# Example lines for starting a login manager
#x:5:respawn:/usr/bin/xdm -nodaemon
x:5:respawn:/usr/sbin/gdm -nodaemon        # this line should be uncommented
#x:5:respawn:/usr/bin/kdm -nodaemon
#x:5:respawn:/usr/bin/slim >/dev/null 2>&1

现在,当您重新启动时,您应该直接启动到GDM。

自动登录

登录后,运行命令:

sudo gdmsetup

选择Security Tab,单击,然后Enable Automatic Login从菜单中选择您的用户名并关闭。

下次重新启动后,您应该会自动登录。


我现在使用他的Wheezy Debian构建Rpi-是否有包含gdmsetup的特定软件包。
Salim Fadhley 2012年

我认为这是gdm软件包的一部分。不过,您应该可以手动编辑该文件。
Jivings 2012年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.