Questions tagged «gdm»


1
设置为启动到X服务器时,RasPi无需密码即可启动
无论我是引导到GUI还是引导到控制台,我始终希望在所有计算机上启用密码。 我已经看了很多关于此的教程,尽管显然有很多方法可以使Debian引导到x并自动登录,但是我并没有使用其中的任何方法。当我使用raspi-config脚本设置为在启动时引导GUI时,它将绕过我的用户密码输入。由于我有多个用户,因此无法使用。 所以这个问题是:“如何在进入Raspbian上的GUI之前安全地启动到x服务器,并保持密码?” 编辑: 如果我不误会,以“ sed”开头的行上的代码似乎设置了自动登录功能。 do_boot_behaviour() { whiptail --yesno "Should we boot straight to desktop?" 20 60 2 RET=$? if [ $RET -eq 0 ]; then # yes update-rc.d lightdm enable 2 sed /etc/lightdm/lightdm.conf -i -e "s/^#autologin-user=.*/autologin-user=pi/" ASK_TO_REBOOT=1 elif [ $RET -eq 1 ]; then # no update-rc.d lightdm …
11 boot  raspbian  gui  gdm 
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.