Lenovo ThinkPad 11e Randomly Freezes on Ubuntu 16.04

19,874

Solution 1

Try installing newer kernels. In some cases, it fixes the problem of freezing that caused by bad high precision timer code. This is binary for Linux 4.5.2:

http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.5.2-wily/

Download appropriate 3 .deb binary packages, install them, and reboot to the new kernel. I hope this will fix your problm. By the way, Ubuntu 16.04 is alraedy out with a new kernel, so do a clean install (not an upgrade) and see if it fixes your problem.

Solution 2

See https://bugzilla.kernel.org/show_bug.cgi?id=109051

The following eliminated the problem for me.

Edit /etc/default/grub. Change the line

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"

to

GRUB_CMDLINE_LINUX_DEFAULT="intel_idle.max_cstate=1 quiet splash"

then do

sudo update-grub

and reboot.

Solution 3

There isn't enough information to diagnose this so you should file a bug. I'm assuming when you mention 'freeze' the computer needs to be completely power cycled to use it again. With that it is most likely a kernel issue. The following link explains how to file a bug against the Ubuntu kernel: https://wiki.ubuntu.com/Kernel/Bugs

Another approach is to use linux-crashdump to try and capture the failure when it happens. Instructions are here: https://wiki.ubuntu.com/Kernel/CrashdumpRecipe

Finally you could try installing the latest mainline kernel to see if this fixes the issue. This would be useful information to report in the bug as well: http://kernel.ubuntu.com/~kernel-ppa/mainline/daily/current/

Solution 4

In your possible relevant issues, you mentioned:

The integrated Intel graphics show up as Intel Bay Trail (which I know has had some problems with Linux in the past)

Here's my personal experience. I have had a similar issue. It was an NVidia GT820M Card. I always had issue using the proprietary drivers from Nvidia

enter image description here

What fixed it for me was using Nouveau Xorg drivers instead. I would switch between them to confirm that was the culprit. The same symptoms as yours would happen. PC will stop responding in the middle of anything anytime without any warning whatsoever. And Chrome browser or Sublime would trigger the freeze easily too.

If you happen to be using a proprietary VGA driver for your PC, switch to an open source version, preferably the nouveau.

And this my experience happened on an Ubuntu i7 15.04. The issue is long gone, and I am free now, but from all you describe I'm happy to put 20 points bounty on the VGA drivers as the culprit

Share:
19,874

Related videos on Youtube

Ian
Author by

Ian

I am a CompTIA A+ and Network+ certified technician. I am also a current Computer Science Bachelor's of Science student at the University of Delaware. Avid Linux user. Running everything from Arch Linux and Debian servers to Ubuntu workstations and laptops to multiple Android phones and tablets. Great with C++ and Java. Decent with Batch, C, Common LISP, CSS, HTML, Shell, and VB. Newbie with javaScript, Python, and Ruby.

Updated on September 18, 2022

Comments

  • Ian
    Ian over 1 year

    I have a Lenovo ThinkPad 11e (with the Intel chipset not the AMD), that used to experience freezes randomly under 14.04 which have persisted after a clean install of 16.04.

    Description of the freezes that occur:

    • Screen freezes in place with no distortion
    • Hardware buttons become unresponsive (lights in the mute sound/mic keys no longer toggle when pressed)
    • A hard restart is the only way to fix the freeze
    • There is absolutely no warning before a freeze occurs, the system acts normally right up until it locks up

    The issue seems to appear more frequently when I run anything related to Chrome/Chromium on my system (including stuff that uses the Electron framework, e.g. the Atom editor). But it will still occur even if nothing related to those is running. It also doesn't seem to be related to stress on the system because I can run Windows 10 in VMWare Workstation 12 without any issue.

    I'm not even sure where I should begin looking in for clues as to what's causing the issue, so I was hoping someone here might have an idea. When the issue occurs the entire computer becomes unresponsive and I have to hard shut down. I'm not sure what logs would have any information related to a hard system freeze.

    I have tried using linux-crashdump as suggested by Chris J Arges, but even after replicating my problem twice I have found no crash entries in /var/crash other than those from forcing a kernel crash to make sure it was working

    Possibly relevant information:

    • The integrated Intel graphics show up as Intel Bay Trail (which I know has had some problems with Linux in the past)
    • I have upgraded the system to 8 GB of RAM (the issue occurred before this change as well)
    • My system has an SSD formatted to ext4 (the issue occurred using btrfs as well)
    • I have run multiple hardware diagnostic tests (both built-in BIOS tests and from bootable utilities), that have found no issues with my hardware
    • Admin
      Admin about 8 years
      You may try kernel the command line ... intel_idle.max_cstate=1. If you see a "missing firmware" message when running update-initramfs try to get the missing firmware file.
    • Ian
      Ian about 8 years
      Where exactly would I put "intel_idle.max_cstate=1" before running update-initramfs?
    • Asela Sampath
      Asela Sampath about 8 years
      I have this same issue. My laptop is an Acer E5-511, also Intel based, but also running on an SSD hard drive.
    • Sergiy Kolodyazhnyy
      Sergiy Kolodyazhnyy about 8 years
      How much swap memory do you have ? I've had issue where my system would run out of swap and freeze up just as you've described, had to increase swap amount.
    • RoundSparrow hilltx
      RoundSparrow hilltx about 8 years
      Acer E1-510P, intel based, running original hard drive (not SSD). Windows 10 perfectly stable. But fresh install (format partitions) of Ubuntu 16.04 freezes in same way (entirely unresponsive) playing Netflix in Chrome - typically in 1 hour or less. Seems to be a CPU loop, as I notice that the fan goes to 100% on crash. I suggest marking this Ubuntu bug as one you have: bugs.launchpad.net/ubuntu/+source/linux/+bug/1575467 - people reported using older 3.16 kernel seems to work around it. So a kernel bug.
    • Hitechcomputergeek
      Hitechcomputergeek almost 8 years
      I have had the exact same thing since 15.10 (on 16.04 now). On 15.04, though, I hadn't had any freezes. I do not have an SSD and do have an Intel CPU.
  • Ian
    Ian about 8 years
    Part of my question is asking where I should be looking for information regarding what happens when it crashes. I'd have to imagine one of the logs somewhere must have something.
  • Ian
    Ian about 8 years
    I installed crashdump and it works when I test it, however I've forced my problem to occur twice now (by playing Bloons TD 5) and no crashes have been logged either time
  • Tim
    Tim about 8 years
    Welcome to Ask Ubuntu! Whilst this may theoretically answer the question, it would be preferable to include the essential parts of the answer here, and provide the link for reference.
  • Ian
    Ian about 8 years
    Were you experiencing the same issue on the same kind of laptop?
  • CMorales
    CMorales about 8 years
    No, on an ASUS N56JN, also intel chipset not AMD. I refer to the problem that it was randomly freezing after upgrading to 16.04.
  • Ian
    Ian about 8 years
    Nope, the only additional driver I have in use is just the additional microcode for the processor itself. There's no driver installed for the Bay Trail integrated GPU. Very good answer, though.
  • Ian
    Ian about 8 years
    I believe the updated kernel fixed my issue. I was able to have Chrome open for several hours without experiencing any crashes. Being as this seems to have fixed the issue and the bounty is about to expire I'm just going to accept this as the answer.
  • KhoPhi
    KhoPhi about 8 years
    @IanLantzy plus you did mention you know the Bay Trail has past record of giving problems. I guess that's a bigger sign of it being the culprit. Edit: Just realized the kernel build fixed your issue. Good to know. Will keep that in mind myself. Thanks
  • Ho1
    Ho1 about 8 years
    @IanLantzy I'm happy to see that your problem is fixed. In fact, debugging such problems is very tricky, and only a handful of people can debug and fix them. This perticular problem with HPET (if it was the case) was there for a long time, and it took a while to be understood and fixed by kernel gurus. Phoronix (phoronix.com) is a good place to be informed about the recent advances in Linux and its possible problems.
  • Hitechcomputergeek
    Hitechcomputergeek almost 8 years
    I have a Ubuntu 16.04 VM booted from a live CD that's frozen (on the same HW). You could debug that.
  • Hitechcomputergeek
    Hitechcomputergeek almost 8 years
    I have installed the latest kernel, and it does not seem to have fixed the problem after all - it just froze twice in a row after a week of not freezing.
  • Ian
    Ian almost 8 years
    Yes I've noticed the problem seems to be persisting, but has gotten better with high kernel versions. It's likely some kind of hardware/firmware issue that will eventually be fixed.
  • alx
    alx over 7 years
    Please be aware that this change will increase the power consumption (especially a issue when running on battery).
  • gnarbarian
    gnarbarian about 7 years
    I've also got a Thinkpad 11e which has been upgraded to 8gb of ram. I'm on 16.04.2 with kernal verseion 4.8.0-36-generic and I am still experiencing the issue.
  • Ho1
    Ho1 about 7 years
    @gnarbarian Try Kernel 4.10, which is available now. Your problem may also arise from the GPU crash, that is visible with running dmesg command. In that case, you should stick to the old kernel, but install latest GPU driver. This is for Intel: askubuntu.com/a/850431/151837