You are not logged in.

#1 2022-04-27 20:15:29

omega_sine
Member
Registered: 2022-04-21
Posts: 6

[SOLVED]Attempting to Fix Screen Tearing

I have been attempting to remove screen tearing that occurs as a result of Xorg. From doing a bit of research, I can apparently add a config file to /etc/X11/xorg.conf.d/, called 20-intel-gpu.conf. In that file, I have the following:

 Section "Device"
        Identifier "intel graphics"
        Driver "i915"
        Option "Tearfree" "true"
EndSection

However when I try to restart xorg with "startx", it gives me an error saying that it was not able to find the module. The logs in ~/.local/share/xorg/Xorg.0.log say this:

[   231.132] (II) LoadModule: "i915"
[   231.132] (WW) Warning, couldn't open module i915
[   231.132] (EE) Failed to load module "i915" (module does not exist, 0)
[   231.132] (EE) No drivers available.
[   231.132] (EE)
Fatal server error:
[   231.132] (EE) no screens found(EE)
[   231.132] (EE)

I initially tried specifiying the

 Driver 

option in the config file as just "intel", but that resulted in the same error. Removing this config file makes xorg run normally, so it clearly does not like this config file. I ended up trying "i915" because that's what this command gave:

$ lspci -k | grep -A3 -i vga
00:02.0 VGA compatible controller: Intel Corporation 2nd Generation Core Processor Family Integrated Graphics Controller (rev 09)
        Subsystem: Lenovo ThinkPad T420
        Kernel driver in use: i915
        Kernel modules: i915

Is there anything else I can put for the driver option, or another method to fix screen tearing, or am I just stuck with screen tearing?

Last edited by omega_sine (2022-04-27 22:16:51)

Offline

#2 2022-04-27 21:12:16

torors
Member
Registered: 2012-09-28
Posts: 107

Re: [SOLVED]Attempting to Fix Screen Tearing

Have you installed the Intel Driver ?

Output of:

lsmod | grep i915

Offline

#3 2022-04-27 21:32:33

omega_sine
Member
Registered: 2022-04-21
Posts: 6

Re: [SOLVED]Attempting to Fix Screen Tearing

$ lsmod | grep i915
i915                 3330048  7
ttm                    86016  1 i915
intel_gtt              28672  1 i915
video                  57344  2 thinkpad_acpi,i915

Offline

#4 2022-04-27 21:34:12

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 76,676

Re: [SOLVED]Attempting to Fix Screen Tearing

I ended up trying "i915" because that's

…"wrong".

torors wrote:

Have you installed the Intel Driver ?

Last edited by seth (2022-04-27 21:34:46)

Offline

#5 2022-04-27 22:14:12

omega_sine
Member
Registered: 2022-04-21
Posts: 6

Re: [SOLVED]Attempting to Fix Screen Tearing

Installing the xf86-video-intel package, and replacing the Device name with intel seemed to do the trick. No screen tearing now.

Offline

Board footer

Powered by FluxBB