Ubuntu 20.04 总是在启动时强制我创建新用户

Ubuntu 20.04 总是在启动时强制我创建新用户

我新安装了 Ubuntu 20.04,定制了 GDM3,安装了我需要的软件,一切似乎都很顺利。但是,当我重新启动时,Ubuntu 出于某种原因要求我创建一个新用户。我无法绕过这个问题,必须创建用户,然后才能正常注销。然后登录屏幕会显示新用户和正确的原始用户,我可以登录并继续。

我搜索了 Ask Ubuntu,发现有一个类似问题。不幸的是,那里提供的解决方案(重新安装 ubuntu-desktop)对我没有用。

如果相关的话,图形驱动程序是 Nvidia 440.100。

有人能建议如何解决这个问题吗?我不愿意重新安装 Ubuntu,因为有相当多的自定义内容。除了这个新用户问题,到目前为止,它运行良好。

[编辑] 10 月 1/20 此问题在 Ubuntu 18 和 19 中已知,并且似乎与[此错误][1]相同。

我发现在研究为什么在启动时系统日志会显示这些行时:

Oct  1 15:39:49 mynode tracker-miner-f[1871]:   (Sparql buffer) Error in task 0 (file:///run/gnome-initial-setup) of the array-update: There is not enough space on the file system for update operations
Oct  1 15:39:49 mynode tracker-miner-f[1871]: Could not execute sparql: There is not enough space on the file system for update operations
Oct  1 15:39:50 mynode tracker-miner-f[1871]:   (Sparql buffer) Error in task 0 (file:///run/gnome-initial-setup) of the array-update: There is not enough space on the file system for update operations
Oct  1 15:39:50 mynode tracker-miner-f[1871]: Could not execute sparql: There is not enough space on the file system for update operations
Oct  1 15:39:50 mynode tracker-miner-f[1871]:   (Sparql buffer) Error in task 0 (file:///run/gnome-initial-setup/gnome-initial-setup-uid) of the array-update: There is not enough space on the file system for update operations
Oct  1 15:39:50 mynode tracker-miner-f[1871]: Could not execute sparql: There is not enough space on the file system for update operations

该消息具有误导性,因为该分区仅使用了 20%。

答案1

在寻找为什么会出现“空间不足”的情况时,我偶然发现了一些针对“强制新用户”问题的建议:

  1. 通过在 中注释掉 gnome-initial-setup 来禁用它 /etc/xdg/autostart/gnome-initial-setup-first-login.desktop
    注释的行是:

    Exec=/usr/libexec/gnome-initial-setup --existing-user
    

    这似乎解决了这个问题,但效果并不理想。

  2. 完全删除 gnome-initial-setup 包

     sudo apt remove gnome-initial-setup
    
  3. 从 gnome 登录切换到 lightdm

  4. 最后,有效的一个:

     a) edit /etc/gdm3/custom.conf
     b) Add/modify: 
    
         [daemon]
         InitialSetupEnable=False
    

相关内容