Ubuntu 16.04 - GUI freezes on login start page

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
10
down vote

favorite
6












I am unable to enter anything at the login screen; it just freezes directly after the page shows. The cursor inside the login form blinks about 10 times, then it stops. I can't move the mouse or use the keyboard.



I already entered the secure mode and triggered update, upgrade and dist-upgrade via the root shell it made no difference.










share|improve this question



























    up vote
    10
    down vote

    favorite
    6












    I am unable to enter anything at the login screen; it just freezes directly after the page shows. The cursor inside the login form blinks about 10 times, then it stops. I can't move the mouse or use the keyboard.



    I already entered the secure mode and triggered update, upgrade and dist-upgrade via the root shell it made no difference.










    share|improve this question

























      up vote
      10
      down vote

      favorite
      6









      up vote
      10
      down vote

      favorite
      6






      6





      I am unable to enter anything at the login screen; it just freezes directly after the page shows. The cursor inside the login form blinks about 10 times, then it stops. I can't move the mouse or use the keyboard.



      I already entered the secure mode and triggered update, upgrade and dist-upgrade via the root shell it made no difference.










      share|improve this question















      I am unable to enter anything at the login screen; it just freezes directly after the page shows. The cursor inside the login form blinks about 10 times, then it stops. I can't move the mouse or use the keyboard.



      I already entered the secure mode and triggered update, upgrade and dist-upgrade via the root shell it made no difference.







      ubuntu login gui freeze






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Feb 25 at 13:06









      Jeff Schaller

      34.1k951113




      34.1k951113










      asked Jun 2 '17 at 8:28









      Black

      4932728




      4932728




















          4 Answers
          4






          active

          oldest

          votes

















          up vote
          10
          down vote



          accepted










          We were able to solve it by starting the shell in secure mode and executing the following commands.



           apt-get update 
          apt-get install xserver-xorg-input-all
          apt-get install ubuntu-desktop
          apt-get install ubuntu-minimal
          apt-get install xorg xserver-xorg
          apt-get install xserver-xorg-input-evdev //I think this packet was the problem
          apt-get install xserver-xorg-video-vmware

          reboot





          share|improve this answer
















          • 1




            Thank you, this solved my exact problem. I was trying to fix problems with my video and followed this askubuntu.com/questions/763672/… and after reboot got the same problem as you (don't know if it was because of what I did or not). I installed xserver-xorg-input-all which pulled in xserver-xorg-input-evdev and now it works again.
            – Kayaman
            Aug 22 '17 at 19:47






          • 2




            apt-get update then apt-get install xserver-xorg-input-evdev then /etc/init.d/lightdm restart worked for me. Of course, I did these as root user.
            – User1
            Feb 20 at 2:37










          • @User1, add this as an Answer please, not as comment. Thanks for your solution!
            – Black
            Feb 20 at 11:00

















          up vote
          5
          down vote













          To Simplify @Black's answer, run these as root:



          apt-get update
          apt-get install xserver-xorg-input-evdev
          /etc/init.d/lightdm restart


          No reboot required on this solution.






          share|improve this answer



























            up vote
            1
            down vote













            I tried everything, for weeks, all day long. I finally went to Driver Manager and changed my video driver to NVIDIA, and that fixed it.



            Ironically, NVIDIA was the recommended setting. No idea why that wasn't chosen. It wasn't me - Linux set that.



            Anyway, let me know. YMMV.






            share|improve this answer




















            • Linux doesn't set jack. Maybe some of the Ubuntu topping which is supposed to do some magic in the back. Anyway, I'm voting down because this is not a real answer. No background on how this solution works, no documentation that explains anything. Just a best guess.
              – Tim
              Jul 12 at 21:01

















            up vote
            -1
            down vote













            This fixed it! Thanks much! Spent almost a whole day searching and trying until I found this one.





            share








            New contributor




            Grant Gilpin is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
            Check out our Code of Conduct.

















              Your Answer







              StackExchange.ready(function()
              var channelOptions =
              tags: "".split(" "),
              id: "106"
              ;
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function()
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled)
              StackExchange.using("snippets", function()
              createEditor();
              );

              else
              createEditor();

              );

              function createEditor()
              StackExchange.prepareEditor(
              heartbeatType: 'answer',
              convertImagesToLinks: false,
              noModals: false,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: null,
              bindNavPrevention: true,
              postfix: "",
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              );



              );













               

              draft saved


              draft discarded


















              StackExchange.ready(
              function ()
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f368748%2fubuntu-16-04-gui-freezes-on-login-start-page%23new-answer', 'question_page');

              );

              Post as a guest






























              4 Answers
              4






              active

              oldest

              votes








              4 Answers
              4






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes








              up vote
              10
              down vote



              accepted










              We were able to solve it by starting the shell in secure mode and executing the following commands.



               apt-get update 
              apt-get install xserver-xorg-input-all
              apt-get install ubuntu-desktop
              apt-get install ubuntu-minimal
              apt-get install xorg xserver-xorg
              apt-get install xserver-xorg-input-evdev //I think this packet was the problem
              apt-get install xserver-xorg-video-vmware

              reboot





              share|improve this answer
















              • 1




                Thank you, this solved my exact problem. I was trying to fix problems with my video and followed this askubuntu.com/questions/763672/… and after reboot got the same problem as you (don't know if it was because of what I did or not). I installed xserver-xorg-input-all which pulled in xserver-xorg-input-evdev and now it works again.
                – Kayaman
                Aug 22 '17 at 19:47






              • 2




                apt-get update then apt-get install xserver-xorg-input-evdev then /etc/init.d/lightdm restart worked for me. Of course, I did these as root user.
                – User1
                Feb 20 at 2:37










              • @User1, add this as an Answer please, not as comment. Thanks for your solution!
                – Black
                Feb 20 at 11:00














              up vote
              10
              down vote



              accepted










              We were able to solve it by starting the shell in secure mode and executing the following commands.



               apt-get update 
              apt-get install xserver-xorg-input-all
              apt-get install ubuntu-desktop
              apt-get install ubuntu-minimal
              apt-get install xorg xserver-xorg
              apt-get install xserver-xorg-input-evdev //I think this packet was the problem
              apt-get install xserver-xorg-video-vmware

              reboot





              share|improve this answer
















              • 1




                Thank you, this solved my exact problem. I was trying to fix problems with my video and followed this askubuntu.com/questions/763672/… and after reboot got the same problem as you (don't know if it was because of what I did or not). I installed xserver-xorg-input-all which pulled in xserver-xorg-input-evdev and now it works again.
                – Kayaman
                Aug 22 '17 at 19:47






              • 2




                apt-get update then apt-get install xserver-xorg-input-evdev then /etc/init.d/lightdm restart worked for me. Of course, I did these as root user.
                – User1
                Feb 20 at 2:37










              • @User1, add this as an Answer please, not as comment. Thanks for your solution!
                – Black
                Feb 20 at 11:00












              up vote
              10
              down vote



              accepted







              up vote
              10
              down vote



              accepted






              We were able to solve it by starting the shell in secure mode and executing the following commands.



               apt-get update 
              apt-get install xserver-xorg-input-all
              apt-get install ubuntu-desktop
              apt-get install ubuntu-minimal
              apt-get install xorg xserver-xorg
              apt-get install xserver-xorg-input-evdev //I think this packet was the problem
              apt-get install xserver-xorg-video-vmware

              reboot





              share|improve this answer












              We were able to solve it by starting the shell in secure mode and executing the following commands.



               apt-get update 
              apt-get install xserver-xorg-input-all
              apt-get install ubuntu-desktop
              apt-get install ubuntu-minimal
              apt-get install xorg xserver-xorg
              apt-get install xserver-xorg-input-evdev //I think this packet was the problem
              apt-get install xserver-xorg-video-vmware

              reboot






              share|improve this answer












              share|improve this answer



              share|improve this answer










              answered Jun 2 '17 at 8:59









              Black

              4932728




              4932728







              • 1




                Thank you, this solved my exact problem. I was trying to fix problems with my video and followed this askubuntu.com/questions/763672/… and after reboot got the same problem as you (don't know if it was because of what I did or not). I installed xserver-xorg-input-all which pulled in xserver-xorg-input-evdev and now it works again.
                – Kayaman
                Aug 22 '17 at 19:47






              • 2




                apt-get update then apt-get install xserver-xorg-input-evdev then /etc/init.d/lightdm restart worked for me. Of course, I did these as root user.
                – User1
                Feb 20 at 2:37










              • @User1, add this as an Answer please, not as comment. Thanks for your solution!
                – Black
                Feb 20 at 11:00












              • 1




                Thank you, this solved my exact problem. I was trying to fix problems with my video and followed this askubuntu.com/questions/763672/… and after reboot got the same problem as you (don't know if it was because of what I did or not). I installed xserver-xorg-input-all which pulled in xserver-xorg-input-evdev and now it works again.
                – Kayaman
                Aug 22 '17 at 19:47






              • 2




                apt-get update then apt-get install xserver-xorg-input-evdev then /etc/init.d/lightdm restart worked for me. Of course, I did these as root user.
                – User1
                Feb 20 at 2:37










              • @User1, add this as an Answer please, not as comment. Thanks for your solution!
                – Black
                Feb 20 at 11:00







              1




              1




              Thank you, this solved my exact problem. I was trying to fix problems with my video and followed this askubuntu.com/questions/763672/… and after reboot got the same problem as you (don't know if it was because of what I did or not). I installed xserver-xorg-input-all which pulled in xserver-xorg-input-evdev and now it works again.
              – Kayaman
              Aug 22 '17 at 19:47




              Thank you, this solved my exact problem. I was trying to fix problems with my video and followed this askubuntu.com/questions/763672/… and after reboot got the same problem as you (don't know if it was because of what I did or not). I installed xserver-xorg-input-all which pulled in xserver-xorg-input-evdev and now it works again.
              – Kayaman
              Aug 22 '17 at 19:47




              2




              2




              apt-get update then apt-get install xserver-xorg-input-evdev then /etc/init.d/lightdm restart worked for me. Of course, I did these as root user.
              – User1
              Feb 20 at 2:37




              apt-get update then apt-get install xserver-xorg-input-evdev then /etc/init.d/lightdm restart worked for me. Of course, I did these as root user.
              – User1
              Feb 20 at 2:37












              @User1, add this as an Answer please, not as comment. Thanks for your solution!
              – Black
              Feb 20 at 11:00




              @User1, add this as an Answer please, not as comment. Thanks for your solution!
              – Black
              Feb 20 at 11:00












              up vote
              5
              down vote













              To Simplify @Black's answer, run these as root:



              apt-get update
              apt-get install xserver-xorg-input-evdev
              /etc/init.d/lightdm restart


              No reboot required on this solution.






              share|improve this answer
























                up vote
                5
                down vote













                To Simplify @Black's answer, run these as root:



                apt-get update
                apt-get install xserver-xorg-input-evdev
                /etc/init.d/lightdm restart


                No reboot required on this solution.






                share|improve this answer






















                  up vote
                  5
                  down vote










                  up vote
                  5
                  down vote









                  To Simplify @Black's answer, run these as root:



                  apt-get update
                  apt-get install xserver-xorg-input-evdev
                  /etc/init.d/lightdm restart


                  No reboot required on this solution.






                  share|improve this answer












                  To Simplify @Black's answer, run these as root:



                  apt-get update
                  apt-get install xserver-xorg-input-evdev
                  /etc/init.d/lightdm restart


                  No reboot required on this solution.







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Mar 1 at 16:03









                  User1

                  1512




                  1512




















                      up vote
                      1
                      down vote













                      I tried everything, for weeks, all day long. I finally went to Driver Manager and changed my video driver to NVIDIA, and that fixed it.



                      Ironically, NVIDIA was the recommended setting. No idea why that wasn't chosen. It wasn't me - Linux set that.



                      Anyway, let me know. YMMV.






                      share|improve this answer




















                      • Linux doesn't set jack. Maybe some of the Ubuntu topping which is supposed to do some magic in the back. Anyway, I'm voting down because this is not a real answer. No background on how this solution works, no documentation that explains anything. Just a best guess.
                        – Tim
                        Jul 12 at 21:01














                      up vote
                      1
                      down vote













                      I tried everything, for weeks, all day long. I finally went to Driver Manager and changed my video driver to NVIDIA, and that fixed it.



                      Ironically, NVIDIA was the recommended setting. No idea why that wasn't chosen. It wasn't me - Linux set that.



                      Anyway, let me know. YMMV.






                      share|improve this answer




















                      • Linux doesn't set jack. Maybe some of the Ubuntu topping which is supposed to do some magic in the back. Anyway, I'm voting down because this is not a real answer. No background on how this solution works, no documentation that explains anything. Just a best guess.
                        – Tim
                        Jul 12 at 21:01












                      up vote
                      1
                      down vote










                      up vote
                      1
                      down vote









                      I tried everything, for weeks, all day long. I finally went to Driver Manager and changed my video driver to NVIDIA, and that fixed it.



                      Ironically, NVIDIA was the recommended setting. No idea why that wasn't chosen. It wasn't me - Linux set that.



                      Anyway, let me know. YMMV.






                      share|improve this answer












                      I tried everything, for weeks, all day long. I finally went to Driver Manager and changed my video driver to NVIDIA, and that fixed it.



                      Ironically, NVIDIA was the recommended setting. No idea why that wasn't chosen. It wasn't me - Linux set that.



                      Anyway, let me know. YMMV.







                      share|improve this answer












                      share|improve this answer



                      share|improve this answer










                      answered Jan 4 at 17:01









                      Jon

                      191




                      191











                      • Linux doesn't set jack. Maybe some of the Ubuntu topping which is supposed to do some magic in the back. Anyway, I'm voting down because this is not a real answer. No background on how this solution works, no documentation that explains anything. Just a best guess.
                        – Tim
                        Jul 12 at 21:01
















                      • Linux doesn't set jack. Maybe some of the Ubuntu topping which is supposed to do some magic in the back. Anyway, I'm voting down because this is not a real answer. No background on how this solution works, no documentation that explains anything. Just a best guess.
                        – Tim
                        Jul 12 at 21:01















                      Linux doesn't set jack. Maybe some of the Ubuntu topping which is supposed to do some magic in the back. Anyway, I'm voting down because this is not a real answer. No background on how this solution works, no documentation that explains anything. Just a best guess.
                      – Tim
                      Jul 12 at 21:01




                      Linux doesn't set jack. Maybe some of the Ubuntu topping which is supposed to do some magic in the back. Anyway, I'm voting down because this is not a real answer. No background on how this solution works, no documentation that explains anything. Just a best guess.
                      – Tim
                      Jul 12 at 21:01










                      up vote
                      -1
                      down vote













                      This fixed it! Thanks much! Spent almost a whole day searching and trying until I found this one.





                      share








                      New contributor




                      Grant Gilpin is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                      Check out our Code of Conduct.





















                        up vote
                        -1
                        down vote













                        This fixed it! Thanks much! Spent almost a whole day searching and trying until I found this one.





                        share








                        New contributor




                        Grant Gilpin is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                        Check out our Code of Conduct.



















                          up vote
                          -1
                          down vote










                          up vote
                          -1
                          down vote









                          This fixed it! Thanks much! Spent almost a whole day searching and trying until I found this one.





                          share








                          New contributor




                          Grant Gilpin is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.









                          This fixed it! Thanks much! Spent almost a whole day searching and trying until I found this one.






                          share








                          New contributor




                          Grant Gilpin is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.








                          share


                          share






                          New contributor




                          Grant Gilpin is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.









                          answered 8 mins ago









                          Grant Gilpin

                          1




                          1




                          New contributor




                          Grant Gilpin is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.





                          New contributor





                          Grant Gilpin is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.






                          Grant Gilpin is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.



























                               

                              draft saved


                              draft discarded















































                               


                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function ()
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f368748%2fubuntu-16-04-gui-freezes-on-login-start-page%23new-answer', 'question_page');

                              );

                              Post as a guest













































































                              Popular posts from this blog

                              Peggy Mitchell

                              Palaiologos

                              The Forum (Inglewood, California)