System glitch: how to identify the cause

2

0

I've used Linux Mint 18 for a long time, but recently a strange problem has come up and I'd like to know how to understand the cause. Sometimes, especially during high CPU usage, mingled and ghost characters and other strange artifacts appear.

enter image description here

How to investigate the problem?

Sometimes the problem disappears when the high load terminates, but mostly I have to reboot the computer.

The problem doesn't come up when using Windows.

lshw returns:

*-display
description: VGA compatible controller product: Xeon E3-1200 v2/3rd Gen Core processor Graphics Controller vendor: Intel Corporation physical id: 2 bus info: pci@0000:00:02.0 version: 09 width: 64 bits clock: 33MHz capabilities: msi pm vga_controller bus_master cap_list rom configuration: driver=i915 latency=0 resources: irq:31 memory:f7800000-f7bfffff memory:e0000000-efffffff ioport:f000(size=64)

I didn't manually update drivers/configuration, but I updated Mint as usual.

sensors returns (invoked just before launching GIMP and thus raising the glitch):

acpitz-virtual-0 Adapter: Virtual device temp1: +27.8°C (crit = +92.0°C) temp2: +29.8°C (crit = +92.0°C)

coretemp-isa-0000 Adapter: ISA adapter Physical id 0: +34.0°C (high = +87.0°C, crit = +91.0°C) Core 0: +34.0°C (high = +87.0°C, crit = +91.0°C) Core 1: +28.0°C (high = +87.0°C, crit = +91.0°C)

asus-isa-0000 Adapter: ISA adapter cpu_fan: 0 RPM

Surfer on the fall

Posted 2018-02-28T19:35:50.843

Reputation: 93

What are your display adapter and driver ? Have you updated your driver or configuration files ? – harrymc – 2018-03-05T20:13:37.590

1Maybe graphic card overheating? Please specify your HW & drivers (graphic card, cpu, drivers). It would be also good to have a temperatures overview (see lm-sensors) – tukan – 2018-03-06T09:46:09.813

@Surfer on the fall: Why have you added a bounty if you aren't answering questions? – harrymc – 2018-03-08T07:22:25.550

@harrymc I had some serious issues so I wasn't able to retrieve the information required... – Surfer on the fall – 2018-03-10T15:38:49.017

updated question adding details! – Surfer on the fall – 2018-03-10T15:43:37.497

1Thank you, but could you be more specific about your computer model and the hardware - it's hard to translate these ids. – harrymc – 2018-03-10T17:25:01.807

@harrymc Motherboard: ASUS P8H61-MX, CPU: Intel Core i3-3220T – Surfer on the fall – 2018-03-11T06:26:14.570

See if this method helps the problem. That answer lays the blame on old drivers still found in Linux which can be uninstalled for better results.

– harrymc – 2018-03-11T14:41:03.203

@harrymc seems to be working right now.. – Surfer on the fall – 2018-03-11T22:35:27.060

If you mean that the linked method has solved the problem, then I have added it as an answer. – harrymc – 2018-03-12T07:16:42.320

Answers

1

An answer on the Linux Mint forums for the post of Drivers for Intel Graphics Card Linux Mint 18.2 treats this problem and has been verified by several readers. This answer lays the blame on old drivers still found in Linux which can be uninstalled for better results.

The described procedure is :

  • Execute in Terminal the command

    sudo apt-get remove xserver-xorg-video-intel
    
  • Reboot

  • Execute in Terminal the command inxi -G to verify that your video card was well detected.
  • Execute in Terminal this command for additional verification :

    grep modesetting /var/log/Xorg.0.log
    

The result of the command should look like :

[ 20.036] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[ 20.047] (WW) Falling back to old probe method for modesetting

If you wish to undo the above, just enter the following command and reboot :

sudo apt-get install xserver-xorg-video-intel

harrymc

Posted 2018-02-28T19:35:50.843

Reputation: 306 093

1

Linux systems are not exactly working with CPU-internal graphic "cards". I recently had this problem on a simple desktop with i7-8700K and Linux Mint (updated). There is a workaround with kernel option which is not working, so you may need to put a real graphic card into this computer. Nearly any cheap one.

There are no drivers for CPU-internal graphic card on Linux.

pbies

Posted 2018-02-28T19:35:50.843

Reputation: 1 633