When I type in my password to my newly installed Ubuntu 14.04 computer, it returns me to the login screen. I've seen other answers but those were to Ubuntu 13.04 and older and didn't work.
9 Answers
Press Ctrl + Alt + F1 and log in there and run:
sudo chown -R $USER:$USER $HOME
Then press Ctrl + Alt + F7 and try to log in.
- 1,895
- 373
-
2This worked like charm on Ubuntu 18.04 with a difference of hitting Ctrl + Alt + F2 to get to text terminal session and Ctrl + Alt + F1 to get back to GUI session – Anton Matosov Mar 31 '19 at 03:16
I had same issue i was setting up oracle and messed up with .bashrc PATH variable, with this i could not get past the login screen. Thing that solved my issue was that, in .bashrc, I accidentally did not append $PATH: in PATH variable.
I wrote:
PATH=<other paths>
Correct format:
PATH=$PATH:<other paths>
This worked for me, if this is the case it should work for you too.
- 117,780
- 23
I had similar issue on fresh 18.04 install. Safemode worked well, normal mode kept kicking me out after logging in. UI also lagged during animations, so it was clear that was a graphics issue. So I just updated my Nvidia drivers and it worked.
sudo add-apt-repository ppa:graphics-drivers
sudo apt-get update
sudo apt-get install nvidia-390
- 11
Look at here: Can't login to Ubuntu 14.04 after upgrade maybe can help you.
Check the
$HOMEpermission and owner,chown $USER:$USER -R $HOME; chmod +x -R $HOME, or try to use a Guest Session, or tryadduserto create a user then login.Try reinstall Ubuntu Desktop,
sudo apt-get install --reinstall ubuntu-desktop ubuntu-session.If all above can't work, maybe the lightdm is break, try to fix
sudo apt-get install lightdm --reinstall.Or, just try to use kdm & Kde desktop:
sudo apt-get install kubuntu-desktop kde-standard. (。・_・。)
- 37
-
You seem to be having trouble typing "reinstall", but I was able to add another user account and then add myself to the sudo file. Thanks! – jjjhfam May 27 '15 at 16:30
-
Thx. Does it that mean you can login ubuntu with another account? If so, just backup your old
$HOMEdirectory, and create a new$HOMEdirectory then replace it. (´・ω・`) – scue May 29 '15 at 13:58 -
Yep, I just went into the virtual terminal and moved the files I wanted from old to new account. – jjjhfam May 29 '15 at 20:18
-
4Don't execute
chmod +x -R $HOME, it will make ALL files in $HOME executable. Please change this in the original comment. – Minras Jan 23 '17 at 10:34 -
I was able to ssh into my account, and execute the reinstall of Unbuntu Dekstop from there. I restarted the VM and it was fixed. – nixkuroi Apr 08 '19 at 19:35
-
WARNING: chmod +x should not be excecuted on $HOME, a mod should FIX THIS please! – PascalVKooten May 28 '19 at 09:25
I had same problem with Ubuntu 18.10 and following method help me:
At the login screen use Alt+Ctrl+F3 to access the command line login method.
Log in to the shell with your username and password.
Uninstall and reinstall Ubuntu lightdm. Run the following (be sure to connect to the network):
sudo apt-get purge lightdm sudo apt-get install lightdm dpkg-reconfigure lightdmOnce reconfigured, now reboot.
- 17,696
- 125
after having lots of headaches trying to solve the same problem, adding my user to the video group solved it !
sudo usermod -a -G video {USER}
- 101
Do experience any graphical glitches?
This might be the result of Unity not beeing able to start due to a problem with getting 3D acceleration - so your graphics-card driver is in question (thanks for nothing compiz).
Do you happen to know which graphics card you are using? When in doubt you can press CTRL+ALT+F1, login, type:
lspic | grep VGA
usually you ll get something like
you@yourPc:~$ lspci | grep VGA 01:00.0 VGA compatible controller: NVIDIA Corporation GK110B [GeForce GTX 780 Ti] (rev a1)
You'll then have to update your graphics-card driver, which either might be:
ATI/AMD:
sudo apt-get install fglrx
NVIDIA:
sudo apt-get install nvidia-current
Intel cards usualy don't cause problems.
If this all did not help you might consider booting an older kernel from GRUB, if any is installed. (you can return to your graphical enviroment by pressing CTRL+ALT+F7)
- 101
I had the same problem in 16.04
rm .Xauthority // like the_Seppi said
sudo chown -R $USER:$USER $HOME // like praveen said
chmod +x -R $HOME
and a reboot
did it fore me
- 103
In version 18 it asks for a new password for user ubuntu which I entered. I used 4-l's for my password for user ubuntu. Ubuntu wil not accept the old password or the 4-l's. Based upon the fact that I cannot login to ubuntu I will move on to another os. I like to buy my haay before it goes through the bull. My recommendation for version 18 users is wuuit ehile you are ahead.
-
1You are answering a question from 2015. Your answer does not provide anything useful to the poster of the original question and sounds more like a rant. – Kurankat Mar 27 '20 at 05:54
rm .Xauthority, Alt+F7, login and report back. – s3lph May 27 '15 at 14:30/home/usernamefolder also known as your (username's) home folder. Thermcommand deletes the file. It will be recreated the next time you login using the GUI. – user68186 May 27 '15 at 14:51