启动时在后台登录第二个用户

启动时在后台登录第二个用户

我想在后台登录第二个用户(管理员)。对于第一个用户,user我有/etc/gdm3/custom.conf

[daemon]
# Uncomment the line below to force the login screen to use Xorg
WaylandEnable=false

# Enabling automatic login
#  AutomaticLoginEnable = true
#  AutomaticLogin = user1

# Enabling timed login
  TimedLoginEnable = true
  TimedLogin = user
  TimedLoginDelay = 10

对于登录admin背景我有/etc/rc.local

#!/bin/sh -e

#su -l admin -c "export DISPLAY=:2 && xinit && gnome-session"
sudo su -l admin -c "xinit"

exit 0

但这不起作用。我希望admin用户在启动时在后台登录,这样我就可以随时通过 GUI 切换到他

相关内容