Debian

使用Cubian自動登錄(debian with mate)

  • January 10, 2015

如何使用 Cubian 自動登錄使用者?我已經嘗試刪除預設使用者密碼,但它仍然會促進在登錄螢幕上輸入使用者名。

我嘗試將 /etc/inittab 編輯為以下內容,但沒有成功:

1:2345:respawn:/bin/login -f cubie tty1 </dev/tty1 >/dev/tty1 2>&1

我不知道Cubian,但我正在使用Slim(我在官方網站上讀到的Cubian)來自動登錄Arch(在我的mame櫃中)。

我正在使用 default_user 選項(如果您不想使用它,我沒有得到它)​​,但為了使其工作,我還需要在 default_user 主目錄中配置 .xinitrc。

從我的 slim.conf 配置中:

login_cmd           exec /bin/bash -login ~/.xinitrc %session

[...]

# default user, leave blank or remove this line
# for avoid pre-loading the username.
default_user        charlie

[...]

# Automatically login the default user (without entering
# the password. Set to "yes" to enable this feature
auto_login          yes

還有我的 .xinitrc:

#!/bin/sh

[...]

exec xmonad&
exec wahcade

在你的情況下,我認為是:

#!/bin/sh
exec mate-session

我希望我理解你的問題。如果我弄錯了或不清楚的地方,請給我評論。

引用自:https://unix.stackexchange.com/questions/170455