RobotKernal-UESTC/Docs/Linux开发板遇到问题和解决方案/Ubuntu桌面循环登陆问题.md

29 lines
903 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# Ubuntu桌面循环登陆问题
> 硬件Firefly ROC-RK3588S-PC 系统Ubuntu20.04
>
> 2024/02/05 詹力 罗瑞笛
描述在安装了x11-apps和vnc后发现vnc不好用所以删除了vnc。结果就导致了Ubuntu登陆界面循环登陆在密码输入正确后闪烁一下然后接着又要输入密码。
方案1网络上好多提到这个方案但是似乎没有太大作用。
```shell
# ctrl + alt + f1 \ f2 根据实际情况看看f1和f2哪个能进入tty命令行
ctrl + alt + f2
# 进入主界面
cd ~
ls -lA
# 如果看到 -rw----------------------- 1 root root 53 Nov 29:10:19 .Xauthority
# 整理的username是用于登陆的用户名
chown username:username .Xauthority
```
方案2罗瑞迪亲测解决
```shell
sudo apt-get install lightdm
# 然后在弹出的Configuring lightdm界面中选择lightdm
```
![](Image/Ubuntu桌面循环登陆问题-Img1.png)