Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.63 KB | None | 0 0
  1. ubuntu I only start with startx
  2. ubuntu 18.04 freezes purple screen in login
  3.  
  4. https://itsfoss.com/switch-gdm-and-lightdm-in-ubuntu-14-04/
  5. https://www.enmimaquinafunciona.com/pregunta/130871/que-es-gdm3-kdm-lightdm-como-instalarlos-y-eliminarlos
  6. https://askubuntu.com/questions/264532/revert-back-to-nouveau-drivers
  7.  
  8. https://askubuntu.com/questions/223501/ubuntu-gets-stuck-in-a-login-loop
  9. https://askubuntu.com/questions/223501/ubuntu-gets-stuck-in-a-login-loop
  10.  
  11. **POSIBLES SOLUCIONES**
  12. 1. PERMISOS
  13. ls -lA ~ | grep .Xauthority
  14. chown neverkas:neverkas .Xauthority
  15. ls -lA ~ | grep .ICEauthority
  16. chown neverkas:neverkas .ICEauthority
  17.  
  18. 2. REVISAR LOGS Y PROFILE
  19. sudo gedit /var/log/Xorg.0.log
  20. sudo gedit ~/.xsession-errors
  21. sudo gedit ~/.profile
  22.  
  23. 3. Instalar && Reconfigurar los paquetes de GDM3
  24. # sudo apt-get install gdm3
  25. sudo dpkg-reconfigure gdm3
  26. sudo service gdm3 restart
  27. sudo dpkg --configure -a ; este nose q hace..
  28.  
  29. 4. Agregar un nuevo usuario para ver si accede
  30. sudo adduser testing --group sudo
  31.  
  32. 5. Revisar si funciona GDM3
  33. systemctl status gdm3
  34.  
  35. 6. Actualizar kernel y paquetes
  36. sudo apt-get update
  37. sudo apt-get dist-upgrade
  38.  
  39. 7. mover la configuración XORG
  40. sudo mv /etc/X11/xorg.conf /etc/X11/xorg.conf.backup
  41.  
  42. Is your HOME your HOME?
  43.  
  44. Check the owner of your home directory using ls -l /home
  45. If you don not own your home directory, change it using sudo chown $USER:$USER $HOME
  46. Try a restart using systemctl reboot -i and hope your login loop is fixed.
  47.  
  48. Do you own your .Xauthority?
  49.  
  50. Check the owner of your home directory using ls -l ~/.Xauthority
  51. If you don't own your .Xauthority, change it using sudo chown $USER:$USER ~/.Xauthority
  52. If you do, move your .Xauthority file using sudo mv ~/.Xauthority ~/.Xauthority.bak
  53. Try a restart using systemctl reboot -i and hope your login loop is fixed.
  54. You might need to do the same thing on .ICEauthority.
  55.  
  56. Is your /tmp right?
  57.  
  58. Run ls -ld /tmp and make sure the permissions are exactly drwxrwxrwt. The output should be of this sort
  59.  
  60. drwxrwxrwt 27 root root 36864 Sep 17 17:15 /tmp
  61.  
  62. If not, run sudo chmod a+wt /tmp
  63. Try a restart using systemctl reboot -i and hope your login loop is fixed.
  64.  
  65. Maybe lightdm is your problem?
  66.  
  67. Reconfigure your display manager using dpkg-reconfigure lightdm and try out other display managers (gdm3,lightdm,) that are available. Maybe this will you give you enough clues to move forward.
  68. If none of them help,try installing sddm using sudo apt-get install sddm
  69. for one final try. reconfigure display to sddm.
  70.  
  71. If none of the above solutions worked, you can try re-installing ubuntu.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement