I updated from Ubuntu 12.04 to 14.04. Now it does not leave the login screen.
When I type my password "correct" it reboots and returns to the same login screen.
What can do I do?
Asked
Active
Viewed 89 times
0
bummi
- 394
- 3
- 9
- 14
-
1Possible duplicate of Ubuntu gets stuck in a login loop – Pilot6 Feb 19 '16 at 09:44
1 Answers
0
Press Alt + F1 to get into a console screen login there. Then use sudo chown and sudo chmod on your home directory to regain access. Remember to use -R (so that all subfolders are set too).
Sample:
sudo chown -R myName:myName /home/myName/
sudo chmod -R 700 /home/myName/
Info-Screen
- 495