I updated my Ubuntu 14.04 but after update it not starting after login and the login screen page will repeat thanks
Asked
Active
Viewed 75 times
1 Answers
0
This might be related to an ownership or a permission issue: if you have access to TTY using Ctr + alt + F1 (or F2, F3 ... ,F6). Login there: type your login when prompted for it, hit return, you will then be prompted for your password. Type it and hit return. Once you successfully logged in, try the following solutions:
.Xauthorityownership issue- Type
ls -lah. - Look at the line containing
.Xauthority. - If it owned by
rootthan type:sudo chown YourUsername:YourUsername .Xauthority
- Type
.ownership issue- Type
ls -lahr. - Look at the line containing only
.. - If it owned by
rootthan type:sudo chown YourUsername:YourUsername .
- Type
/temppermission issue- Type
ls -ld /tmp. - If the permission do no look like
drwxrwxrwt - Type
sudo chmod a+wt /tmp
- Type
Just try deleting
.Xauthority(by typingsudo rm .Xauthority)lightdm is acting up -> complete reinstall
- Make sure you are connected to internet with DHCP on!
- Log in in the TTY and type the following commands:
sudo apt-get purge lightdmsudo apt-get updatesudo apt-get install lightdmdpkg-reconfigure lightdmsudo shutdown -r now#to restart the computer
Prolix
- 365