chown 用户名:用户名.Xauthority

chown 用户名:用户名.Xauthority

我在 Ubuntu 17.04 中陷入了登录循环。当我进入 tty1 并输入chown username:roey .Xauthoritytaken fromUbuntu 陷入登录循环

它说我的用户不存在。

有什么问题?我该如何重新登录 Ubuntu-Gnome?

答案1

命令是

sudo chown roey:roey .Xauthority

第一个roey是用户,第二个是组roey

答案2

如果您不知道应该使用什么用户名/组,我建议使用以下内容:

sudo chown $USER:`id -gn` .Xauthority
  • $USER将扩展为您当前的用户名。
  • id -gn将返回当前用户的主要组。

相关内容