(17.10) Log in goes back to log in. [duplicate]
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgO9GURib1T8z7lCwjOGLQaGtrueEthgQ8LO42ZX8cOfTqDK4jvDDpKkLFwf2J49kYCMNW7d4ABih_XCb_2UXdq5fPJDkoyg7-8g_YfRUot-XnaXkNYycsNp7lA5_TW9td0FFpLQ2APzKcZ/s1600/1.jpg)
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhYQ0N5W1qAOxLP7t7iOM6O6AzbZnkXUy16s7P_CWfOb5UbTQY_aDsc727chyphenhyphen5W4IppVNernMMQeaUFTB_rFzAd95_CDt-tnwN-nBx6JyUp2duGjPaL5-VgNO41AVsA_vu30EJcipdDG409/s400/Clash+Royale+CLAN+TAG%2523URR8PPP.png)
up vote
0
down vote
favorite
This question already has an answer here:
Ubuntu gets stuck in a login loop
39 answers
I don't know what happened. Clearly some file got corrupted in my /home folder.
As such when I type my password, the system tries to log me in (purple screen) then dumps me back to the log in screen.
I can log in on command line (alt+F2) and I can log in as a different user normally.
Only entry in jouranlctl -f I can find relevant to this is a failure to write ICEAuthority file (I've tried to chmod it to me again, but it still says cannot write).
Any ideas?
Thank you.
login
marked as duplicate by user68186, karel, Eric Carvalho, David Foerster, Fabby Apr 25 at 20:43
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |Â
up vote
0
down vote
favorite
This question already has an answer here:
Ubuntu gets stuck in a login loop
39 answers
I don't know what happened. Clearly some file got corrupted in my /home folder.
As such when I type my password, the system tries to log me in (purple screen) then dumps me back to the log in screen.
I can log in on command line (alt+F2) and I can log in as a different user normally.
Only entry in jouranlctl -f I can find relevant to this is a failure to write ICEAuthority file (I've tried to chmod it to me again, but it still says cannot write).
Any ideas?
Thank you.
login
marked as duplicate by user68186, karel, Eric Carvalho, David Foerster, Fabby Apr 25 at 20:43
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
This question already has an answer here:
Ubuntu gets stuck in a login loop
39 answers
I don't know what happened. Clearly some file got corrupted in my /home folder.
As such when I type my password, the system tries to log me in (purple screen) then dumps me back to the log in screen.
I can log in on command line (alt+F2) and I can log in as a different user normally.
Only entry in jouranlctl -f I can find relevant to this is a failure to write ICEAuthority file (I've tried to chmod it to me again, but it still says cannot write).
Any ideas?
Thank you.
login
This question already has an answer here:
Ubuntu gets stuck in a login loop
39 answers
I don't know what happened. Clearly some file got corrupted in my /home folder.
As such when I type my password, the system tries to log me in (purple screen) then dumps me back to the log in screen.
I can log in on command line (alt+F2) and I can log in as a different user normally.
Only entry in jouranlctl -f I can find relevant to this is a failure to write ICEAuthority file (I've tried to chmod it to me again, but it still says cannot write).
Any ideas?
Thank you.
This question already has an answer here:
Ubuntu gets stuck in a login loop
39 answers
login
asked Apr 24 at 21:54
![](https://lh6.googleusercontent.com/-MGL68yp5B5A/AAAAAAAAAAI/AAAAAAAJEzA/jOyUaCilsxE/photo.jpg?sz=32)
![](https://lh6.googleusercontent.com/-MGL68yp5B5A/AAAAAAAAAAI/AAAAAAAJEzA/jOyUaCilsxE/photo.jpg?sz=32)
Alex Kambas
61
61
marked as duplicate by user68186, karel, Eric Carvalho, David Foerster, Fabby Apr 25 at 20:43
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
marked as duplicate by user68186, karel, Eric Carvalho, David Foerster, Fabby Apr 25 at 20:43
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |Â
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
0
down vote
To check a common cause of this error...
- boot to the GRUB menu
- choose Advanced Options
- choose Recovery mode
- choose Root access
- at the # prompt, type:
ls -al /home/your_username/.*author*
# use the correct your_username
If you see either of these files owned by root:root...
-rw------- 1 root root 352K Apr 24 09:28 .ICEauthority
-rw------- 1 root root 58 Jun 23 2017 .Xauthority
Then...
sudo mount -o remount,rw /
# to mount the disk as read/write
cd /home/your_username
# again, use the correct your_username
sudo chown your_username:your_username .ICEauthority
# use correct your_username
sudo chown your_username:your_username .Xauthority
# use correct your_username
sudo chmod 600 .*author*
# change the file(s) permissions
reboot
And retest your normal login.
Thank you. I've tried it. All files owned by the correct user. I created a new user and was able to log in fine with the new user. Reboot, and I could no longer log in with the new user either. So I gave up and installed 18.04 from scratch (already had a backup).
â Alex Kambas
May 3 at 20:14
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
To check a common cause of this error...
- boot to the GRUB menu
- choose Advanced Options
- choose Recovery mode
- choose Root access
- at the # prompt, type:
ls -al /home/your_username/.*author*
# use the correct your_username
If you see either of these files owned by root:root...
-rw------- 1 root root 352K Apr 24 09:28 .ICEauthority
-rw------- 1 root root 58 Jun 23 2017 .Xauthority
Then...
sudo mount -o remount,rw /
# to mount the disk as read/write
cd /home/your_username
# again, use the correct your_username
sudo chown your_username:your_username .ICEauthority
# use correct your_username
sudo chown your_username:your_username .Xauthority
# use correct your_username
sudo chmod 600 .*author*
# change the file(s) permissions
reboot
And retest your normal login.
Thank you. I've tried it. All files owned by the correct user. I created a new user and was able to log in fine with the new user. Reboot, and I could no longer log in with the new user either. So I gave up and installed 18.04 from scratch (already had a backup).
â Alex Kambas
May 3 at 20:14
add a comment |Â
up vote
0
down vote
To check a common cause of this error...
- boot to the GRUB menu
- choose Advanced Options
- choose Recovery mode
- choose Root access
- at the # prompt, type:
ls -al /home/your_username/.*author*
# use the correct your_username
If you see either of these files owned by root:root...
-rw------- 1 root root 352K Apr 24 09:28 .ICEauthority
-rw------- 1 root root 58 Jun 23 2017 .Xauthority
Then...
sudo mount -o remount,rw /
# to mount the disk as read/write
cd /home/your_username
# again, use the correct your_username
sudo chown your_username:your_username .ICEauthority
# use correct your_username
sudo chown your_username:your_username .Xauthority
# use correct your_username
sudo chmod 600 .*author*
# change the file(s) permissions
reboot
And retest your normal login.
Thank you. I've tried it. All files owned by the correct user. I created a new user and was able to log in fine with the new user. Reboot, and I could no longer log in with the new user either. So I gave up and installed 18.04 from scratch (already had a backup).
â Alex Kambas
May 3 at 20:14
add a comment |Â
up vote
0
down vote
up vote
0
down vote
To check a common cause of this error...
- boot to the GRUB menu
- choose Advanced Options
- choose Recovery mode
- choose Root access
- at the # prompt, type:
ls -al /home/your_username/.*author*
# use the correct your_username
If you see either of these files owned by root:root...
-rw------- 1 root root 352K Apr 24 09:28 .ICEauthority
-rw------- 1 root root 58 Jun 23 2017 .Xauthority
Then...
sudo mount -o remount,rw /
# to mount the disk as read/write
cd /home/your_username
# again, use the correct your_username
sudo chown your_username:your_username .ICEauthority
# use correct your_username
sudo chown your_username:your_username .Xauthority
# use correct your_username
sudo chmod 600 .*author*
# change the file(s) permissions
reboot
And retest your normal login.
To check a common cause of this error...
- boot to the GRUB menu
- choose Advanced Options
- choose Recovery mode
- choose Root access
- at the # prompt, type:
ls -al /home/your_username/.*author*
# use the correct your_username
If you see either of these files owned by root:root...
-rw------- 1 root root 352K Apr 24 09:28 .ICEauthority
-rw------- 1 root root 58 Jun 23 2017 .Xauthority
Then...
sudo mount -o remount,rw /
# to mount the disk as read/write
cd /home/your_username
# again, use the correct your_username
sudo chown your_username:your_username .ICEauthority
# use correct your_username
sudo chown your_username:your_username .Xauthority
# use correct your_username
sudo chmod 600 .*author*
# change the file(s) permissions
reboot
And retest your normal login.
edited Apr 24 at 23:28
answered Apr 24 at 22:53
![](https://i.stack.imgur.com/RsaTI.jpg?s=32&g=1)
![](https://i.stack.imgur.com/RsaTI.jpg?s=32&g=1)
heynnema
15.4k21945
15.4k21945
Thank you. I've tried it. All files owned by the correct user. I created a new user and was able to log in fine with the new user. Reboot, and I could no longer log in with the new user either. So I gave up and installed 18.04 from scratch (already had a backup).
â Alex Kambas
May 3 at 20:14
add a comment |Â
Thank you. I've tried it. All files owned by the correct user. I created a new user and was able to log in fine with the new user. Reboot, and I could no longer log in with the new user either. So I gave up and installed 18.04 from scratch (already had a backup).
â Alex Kambas
May 3 at 20:14
Thank you. I've tried it. All files owned by the correct user. I created a new user and was able to log in fine with the new user. Reboot, and I could no longer log in with the new user either. So I gave up and installed 18.04 from scratch (already had a backup).
â Alex Kambas
May 3 at 20:14
Thank you. I've tried it. All files owned by the correct user. I created a new user and was able to log in fine with the new user. Reboot, and I could no longer log in with the new user either. So I gave up and installed 18.04 from scratch (already had a backup).
â Alex Kambas
May 3 at 20:14
add a comment |Â