To fix high CPU usage caused by graphic driver

Write tutorials for Linux Mint here
More tutorials on https://github.com/orgs/linuxmint/discu ... /tutorials and (archive) on https://community.linuxmint.com/tutorial
Forum rules
Don't add support questions to tutorials; start your own topic in the appropriate sub-forum instead. Before you post read forum rules
Post Reply
kukamuumuka

To fix high CPU usage caused by graphic driver

Post by kukamuumuka »

Hardware acceleration can cause high CPU usage with some graphic drivers. Usually this can happen on an old computer and driver like savage.

1. Make a /etc/X11/xorg.conf file

Code: Select all

sudo Xorg :1 -configure
PS. Ignore the error messages

Code: Select all

sudo cp xorg.conf.new /etc/X11/xorg.conf
2. Edit the /etc/X11/xorg.conf file

Code: Select all

sudo nano /etc/X11/xorg.conf
... add the next line to the device section

Code: Select all

 Option   "NoAccel" "True"
... save, quit and reboot
Ctrl o
Ctrl x
An example about whole section:

Code: Select all

Section "Device"
        Option      "NoAccel" "True"
	Identifier  "Card0"
	Driver      "intel"
	BusID       "PCI:0:2:0"
EndSection
Edit: With Mint 18 and Debian 9 the option is

Code: Select all

 Option     "Accel"  "False"
Also DRI options is good to be False.

Code: Select all

  Option     "DRI3"    "False"
  Option     "DRI"    "False"   
Post Reply

Return to “Tutorials”