How to troubleshoot a (near total) freeze?

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











up vote
0
down vote

favorite












I'm running Gnome on Ubuntu 17.04. I had gnome-terminal in fullscreen, neovim in a tmux session, a background process compiling code, and Chromium running as well, when my system froze up on me. I could move the mouse cursor, barely, with extreme lag, but that's all I could do. I waited several minutes, then tried Ctrl-C, Ctrl-Alt-Delete, Alt-F2, but nothing responded.



Finally, I gave up and held down the power button until the machine shut down.



What I'm wondering is, how can I troubleshoot this? Is there something else I could have tried before forcing a shutdown? Are there logs I can inspect to see what happened? I tried journalctrl after rebooting, but it only shows logs from the current boot. I also see some log files in ~/.local/share/xorg/, but I'm not sure if they're relevant, or what to search for.







share|improve this question
























    up vote
    0
    down vote

    favorite












    I'm running Gnome on Ubuntu 17.04. I had gnome-terminal in fullscreen, neovim in a tmux session, a background process compiling code, and Chromium running as well, when my system froze up on me. I could move the mouse cursor, barely, with extreme lag, but that's all I could do. I waited several minutes, then tried Ctrl-C, Ctrl-Alt-Delete, Alt-F2, but nothing responded.



    Finally, I gave up and held down the power button until the machine shut down.



    What I'm wondering is, how can I troubleshoot this? Is there something else I could have tried before forcing a shutdown? Are there logs I can inspect to see what happened? I tried journalctrl after rebooting, but it only shows logs from the current boot. I also see some log files in ~/.local/share/xorg/, but I'm not sure if they're relevant, or what to search for.







    share|improve this question






















      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I'm running Gnome on Ubuntu 17.04. I had gnome-terminal in fullscreen, neovim in a tmux session, a background process compiling code, and Chromium running as well, when my system froze up on me. I could move the mouse cursor, barely, with extreme lag, but that's all I could do. I waited several minutes, then tried Ctrl-C, Ctrl-Alt-Delete, Alt-F2, but nothing responded.



      Finally, I gave up and held down the power button until the machine shut down.



      What I'm wondering is, how can I troubleshoot this? Is there something else I could have tried before forcing a shutdown? Are there logs I can inspect to see what happened? I tried journalctrl after rebooting, but it only shows logs from the current boot. I also see some log files in ~/.local/share/xorg/, but I'm not sure if they're relevant, or what to search for.







      share|improve this question












      I'm running Gnome on Ubuntu 17.04. I had gnome-terminal in fullscreen, neovim in a tmux session, a background process compiling code, and Chromium running as well, when my system froze up on me. I could move the mouse cursor, barely, with extreme lag, but that's all I could do. I waited several minutes, then tried Ctrl-C, Ctrl-Alt-Delete, Alt-F2, but nothing responded.



      Finally, I gave up and held down the power button until the machine shut down.



      What I'm wondering is, how can I troubleshoot this? Is there something else I could have tried before forcing a shutdown? Are there logs I can inspect to see what happened? I tried journalctrl after rebooting, but it only shows logs from the current boot. I also see some log files in ~/.local/share/xorg/, but I'm not sure if they're relevant, or what to search for.









      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 11 '17 at 3:51









      ivan

      650718




      650718




















          1 Answer
          1






          active

          oldest

          votes

















          up vote
          0
          down vote



          accepted










          The following logs can help you debug your system from the last boot:



          journalctl --boot=-1 | less

          tail /var/log/syslog.1
          tail /var/log/kern.log.1
          tail /var/log/debug.1
          tail /var/log/Xorg.0.log.old





          share|improve this answer




















          • Unfortunately, I didn't have logs persisting across boots. I've updated my journald configuration so if it happens again I'll have a better chance of getting insight into the issue.
            – ivan
            Nov 11 '17 at 12:33










          • Debian keeps logs by default. I assumed Ubuntu did as well. I think you should add your configuration change to the answer.
            – jdwolf
            Nov 11 '17 at 12:47










          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%2f403860%2fhow-to-troubleshoot-a-near-total-freeze%23new-answer', 'question_page');

          );

          Post as a guest






























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          0
          down vote



          accepted










          The following logs can help you debug your system from the last boot:



          journalctl --boot=-1 | less

          tail /var/log/syslog.1
          tail /var/log/kern.log.1
          tail /var/log/debug.1
          tail /var/log/Xorg.0.log.old





          share|improve this answer




















          • Unfortunately, I didn't have logs persisting across boots. I've updated my journald configuration so if it happens again I'll have a better chance of getting insight into the issue.
            – ivan
            Nov 11 '17 at 12:33










          • Debian keeps logs by default. I assumed Ubuntu did as well. I think you should add your configuration change to the answer.
            – jdwolf
            Nov 11 '17 at 12:47














          up vote
          0
          down vote



          accepted










          The following logs can help you debug your system from the last boot:



          journalctl --boot=-1 | less

          tail /var/log/syslog.1
          tail /var/log/kern.log.1
          tail /var/log/debug.1
          tail /var/log/Xorg.0.log.old





          share|improve this answer




















          • Unfortunately, I didn't have logs persisting across boots. I've updated my journald configuration so if it happens again I'll have a better chance of getting insight into the issue.
            – ivan
            Nov 11 '17 at 12:33










          • Debian keeps logs by default. I assumed Ubuntu did as well. I think you should add your configuration change to the answer.
            – jdwolf
            Nov 11 '17 at 12:47












          up vote
          0
          down vote



          accepted







          up vote
          0
          down vote



          accepted






          The following logs can help you debug your system from the last boot:



          journalctl --boot=-1 | less

          tail /var/log/syslog.1
          tail /var/log/kern.log.1
          tail /var/log/debug.1
          tail /var/log/Xorg.0.log.old





          share|improve this answer












          The following logs can help you debug your system from the last boot:



          journalctl --boot=-1 | less

          tail /var/log/syslog.1
          tail /var/log/kern.log.1
          tail /var/log/debug.1
          tail /var/log/Xorg.0.log.old






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 11 '17 at 4:26









          jdwolf

          2,392116




          2,392116











          • Unfortunately, I didn't have logs persisting across boots. I've updated my journald configuration so if it happens again I'll have a better chance of getting insight into the issue.
            – ivan
            Nov 11 '17 at 12:33










          • Debian keeps logs by default. I assumed Ubuntu did as well. I think you should add your configuration change to the answer.
            – jdwolf
            Nov 11 '17 at 12:47
















          • Unfortunately, I didn't have logs persisting across boots. I've updated my journald configuration so if it happens again I'll have a better chance of getting insight into the issue.
            – ivan
            Nov 11 '17 at 12:33










          • Debian keeps logs by default. I assumed Ubuntu did as well. I think you should add your configuration change to the answer.
            – jdwolf
            Nov 11 '17 at 12:47















          Unfortunately, I didn't have logs persisting across boots. I've updated my journald configuration so if it happens again I'll have a better chance of getting insight into the issue.
          – ivan
          Nov 11 '17 at 12:33




          Unfortunately, I didn't have logs persisting across boots. I've updated my journald configuration so if it happens again I'll have a better chance of getting insight into the issue.
          – ivan
          Nov 11 '17 at 12:33












          Debian keeps logs by default. I assumed Ubuntu did as well. I think you should add your configuration change to the answer.
          – jdwolf
          Nov 11 '17 at 12:47




          Debian keeps logs by default. I assumed Ubuntu did as well. I think you should add your configuration change to the answer.
          – jdwolf
          Nov 11 '17 at 12:47

















           

          draft saved


          draft discarded















































           


          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f403860%2fhow-to-troubleshoot-a-near-total-freeze%23new-answer', 'question_page');

          );

          Post as a guest













































































          Popular posts from this blog

          How to check contact read email or not when send email to Individual?

          Bahrain

          Postfix configuration issue with fips on centos 7; mailgun relay