Created
July 31, 2019 09:59
-
-
Save saranjsr/264e0cf9dca20da345db547e176e224b to your computer and use it in GitHub Desktop.
ubuntu 18.04 login loop issue in virtual box 6
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# it was due to .Xauthority file has bad permissions or missing. In my case, .Xauthority file was missing. | |
Ctl + ALT + F3 to switch to command line | |
touch ~/.Xauthority | |
xauth add ${HOST}:0 . $(xxd -l 16 -p /dev/urandom) | |
xauth list | |
sudo init 6 | |
fixed this issue. :) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment