LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Desktop
User Name
Password
Linux - Desktop This forum is for the discussion of all Linux Software used in a desktop context.

Notices


Reply
  Search this Thread
Old 10-14-2021, 06:32 PM   #1
Grobbendonk
LQ Newbie
 
Registered: Jul 2004
Posts: 24

Rep: Reputation: 0
Screen graininess/distortion in some applications, Xorg 1.20.11, i3 4.17.1, gfx intel i915


Hi,

I'm getting a problem with some applications I'm running on this laptop, where things like menus, tooltips and graphic buttons glitch as they first display.

The glitches update and correct within a couple of seconds, but also pause display of other things while they happen, so if I'm running my cursor over a menu bar or graphical option, the glitch on the first hover stops the next pop-up/hover rendering. Sometimes, the glitching is repeatable, sometimes it only happens on the first display (like there's a cache of the image and the cache holds the right one).

The glitch looks like a short line of pixels have been displaced in the image, usually staggered through the whole lot. It is very much like the sort of left/right glitching TV and film often use to indicate a disturbed display of something.

Example applications are the Mu editor (big icons at the top glitch), the tooltips for the extension icons in Chrome and Vivaldi, and the icons on screenrec. But applications like Franz, Netbeans and Steam do not do it at all.

One thing I suspect may be quite telling is that if I start the glitching applications as root from the command line, they do not glitch.

I've tried making my root environment the same as my plain user one (setting all the XDG environment variables root doesn't usually have for example), but root still has no problem running them.

I'm stuck on what to look at next, any pointers would be very welcome!



Xorg 1.20.11,
Window manager is i3 4.17.1,
Graphics card (sorry, not actually sure, hwinfo chucks out a lot of numbers, but includes intel i915)

DISTRIB_ID=Pop
DISTRIB_RELEASE=20.04
DISTRIB_CODENAME=focal
DISTRIB_DESCRIPTION="Pop!_OS 20.04 LTS"
 
Old 10-15-2021, 01:27 AM   #2
mrmazda
LQ Guru
 
Registered: Aug 2016
Location: SE USA
Distribution: openSUSE 24/7; Debian, Knoppix, Mageia, Fedora, others
Posts: 5,878
Blog Entries: 1

Rep: Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078
Does it happen if you open an alternate X session type, such as IceWM, instead of i3?

It sounds like what you're describing is what driver developers call "tearing", a driver issue, not an application, WM or DE issue per se. i915 doesn't actually tell us anything, as virtually all Intel IGPs depend on that kernel device driver to support an optimal display driver. Depending on the actual IGP (aka CPU) model that you have, there may be a kernel command line option or Xorg configuration option that can mitigate the tearing. I'm running an Intel IGP here:
Code:
# inxi -GISay
System:
  Host: 00srv Kernel: 5.3.18-lp152.92-default x86_64 bits: 64 compiler: gcc
  v: 7.5.0
  parameters:... noresume  mitigations=auto consoleblank=0 
  Console: pty pts/0 wm: kwin DM: KDM Distro: openSUSE Leap 15.2
Graphics:
  Device-1: Intel 4th Generation Core Processor Family Integrated Graphics
  vendor: Micro-Star MSI driver: i915 v: kernel bus-ID: 00:02.0
  chip-ID: 8086:041e class-ID: 0300
  Display: server: X.Org 1.20.3 driver: loaded: modesetting
  unloaded: fbdev,vesa alternate: intel display-ID: :0 screens: 1
  Screen-1: 0 s-res: 1920x1200 s-dpi: 120 s-size: 406x254mm (16.0x10.0")
  s-diag: 479mm (18.9")
  Monitor-1: HDMI-1 res: 1920x1200 hz: 60 dpi: 94 size: 518x324mm (20.4x12.8")
  diag: 611mm (24.1")
  OpenGL: renderer: Mesa DRI Intel Haswell v: 4.5 Mesa 19.3.4 compat-v: 3.0
  direct render: Yes
Info:...Bash (su) v: 4.4.23 running-in: konsole  inxi: 3.3.07
Providing same info here might help someone here help you find an option, or might tell you there's nothing that can be done about it, or not until you upgrade to a more recent kernel and/or Xorg and/or DE. I've had tearing in the past, but not for a while.
 
1 members found this post helpful.
Old 10-15-2021, 03:10 AM   #3
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
I'm currently seeing something that I think is very close to what OP describes; it happens with UI elements, also text entries, but not actual images afaics.
It happens with certain applications (kepassxc, tor-browser, virtualbox - also inside VMs) but not others (firefox, alacritty, xterm, pcmanfm, openbox).

I made a screencast but the phenomenon doesn't show up there.
I tried taking some screenshots but could not catch it there either.

I would describe it as mostly horizontal displacement of pixels in certain UI elements. I would not describe it as tearing, although there's a time element: the displacement fixes itself after a second or so.

My setup:
Code:
$> uname -rmv
5.10.72-1-lts #1 SMP Sat, 09 Oct 2021 17:34:39 +0000 x86_64
$> pacman -Qi xorg-server | grep -i version
Version         : 1.20.13-2
Provides        : X-ABI-VIDEODRV_VERSION=24.0  X-ABI-XINPUT_VERSION=24.1  X-ABI-EXTENSION_VERSION=10.0  x-server
$> lspci -k | grep -A4 VGA
00:02.0 VGA compatible controller: Intel Corporation HD Graphics 530 (rev 06)
    DeviceName:  Onboard IGD
    Subsystem: Micro-Star International Co., Ltd. [MSI] Device 7982
    Kernel driver in use: i915
    Kernel modules: i915
$> cat /etc/X11/xorg.conf.d/20-intel.conf
Section "Device"
    Identifier  "Intel Graphics"
#   Driver      "intel"
    Driver      "modesetting"
# see linuxquestions.org/questions/linux-desktop-74/how-to-disable-screen-tear-for-i965-gpu-chipset-4175696842/#post6261227
    Option       "TearFree"    "true"
EndSection
$> cat /proc/cmdline
BOOT_IMAGE=../vmlinuz-linux-lts root=UUID=XXXXXXXXXXXXXX rw audit=0 nmi_watchdog=0 vt.cur_default=170064 slub_debug=P slab_nomerge vsyscall=none rootflags=noatime,commit=60 nowatchdog initrd=../intel-ucode.img,../initramfs-linux-lts.img
$>
 
1 members found this post helpful.
Old 10-15-2021, 07:29 AM   #4
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
I do not use any of the application OP cites, but I'm pretty sure we are talking about the same problem here.
Grobbendonk, please show us
Code:
grep -iEA5 'uxa|sna|tearfree|accel' ~/.local/share/xorg/Xorg.0.log
ls /etc/X11/xorg.conf.d/*ntel*conf
cat /etc/X11/xorg.conf.d/*ntel*conf
______________________

I played with my /etc/X11/xorg.conf.d/20-intel.conf file and fiddled around with the 2 drivers & the Options TearFree and AccelMethod.
The "modesetting" driver is built into the kernel, the "intel" driver requires installation of xf86-video-intel (or xserver-xorg-video-intel on Debian).
This is what I figured out about my situation (had to log out of and into Xorg many times):
  • modesetting driver:
    • do not specify anything: can play STK, but artefacts on screen. tearing in non-fullscreen video.
    • specify TearFree true: can play STK, but artefacts on screen. tearing in non-fullscreen video.
    • specify TearFree false: can play STK, but artefacts on screen. tearing in non-fullscreen video.
    • specify AccelMethod uxa: video playback broken, STK too slow, no artefacts
    • specify AccelMethod sna: video playback broken, STK too slow, no artefacts
    • specify Accel off/false, and make sure AccelMethod is commented out: tearing with non-fullscreen video, STK OK, artefacts
  • intel driver:
    • do not specify anything: can play STK, no artefacts, no tearing
    • specify TearFree true: as above
    • specify TearFree false: can play STK, no artefacts, tearing in non-fullscreen video.
    • specify AccelMethod uxa: tearing in non-fullscreen video, STK OK, no artefacts
    • specify AccelMethod sna: no tearing, STK OK, no artefacts
    • specify AccelMethod off: no tearing, STK OK, no artefacts
    • specify Accel off, and make sure AccelMethod is commented out: STK unplayably slow, no artefacts, video playback broken, even alacritty broken
Take it with a grain of salt; I only quickly tested with 1 x264 video with mpv and only one game (Supertuxkart), and I suspect this is device-specific (see lspci output from previous post).
Ideally one should also run the above mentioned 'grep' command after every change.

Also note that the default values if unspecified (commented) seem to differ a little from this man page.

Last edited by ondoho; 10-15-2021 at 08:58 AM.
 
1 members found this post helpful.
Old 10-15-2021, 05:10 PM   #5
Grobbendonk
LQ Newbie
 
Registered: Jul 2004
Posts: 24

Original Poster
Rep: Reputation: 0
Great, thank you both for looking at it for me. I think ondoho's description of the problem is much better than mine - "... mostly horizontal displacement of pixels in certain UI elements ... the displacement fixes itself after a second or so."

The "get more into" suggestions came out as:

inxi -GISa
System: Host: avon Kernel: 5.13.0-7614-generic x86_64 bits: 64 compiler: N/A
parameters: initrd=\EFI\Pop_OS-42924651-e120-457f-9ad3-bbc8b352412b\initrd.img
root=UUID=42924651-e120-457f-9ad3-bbc8b352412b ro quiet loglevel=0 systemd.show_status=false splash
Desktop: i3 4.17.1 info: i3bar wm: gnome-shell dm: GDM3 3.36.3 Distro: Pop!_OS 20.04 LTS
base: Ubuntu 20.04 LTS Focal
Graphics: Device-1: Intel UHD Graphics vendor: CLEVO/KAPOK driver: i915 v: kernel bus ID: 00:02.0 chip ID: 8086:9b41
Display: server: X.Org 1.20.11 driver: i915 compositor: gnome-shell resolution: 1920x1080~60Hz
OpenGL: renderer: Mesa Intel UHD Graphics (CML GT2) v: 4.6 Mesa 21.2.1 direct render: Yes
Info: Processes: 360 Uptime: 4m Memory: 15.33 GiB used: 3.13 GiB (20.4%) Init: systemd v: 245 runlevel: 5 Compilers:
gcc: 9.3.0 alt: 9 Shell: bash (sudo) v: 5.0.17 running in: terminator inxi: 3.0.38


grep -iEA5 'uxa|sna|tearfree|accel' ~/.local/share/xorg/Xorg.0.log

Only returned hits on "accel" and those were all about the touchpad on the machine, not the graphics. There's no xorg.conf.d directory, nor any "intel.conf" type config files anywhere I've looked.

And I tried Tor browser - confirm it's happening there - the page loading bar, and the icons to the right of the address bar all glitch.

Am I right in thinking that's normal for an off-the-shelf Xorg install? And that if I want to start playing with settings, I can create /etc/X11/xorg.conf.d/20-intel.conf and start setting overriding parameters in there? I don't need to do anything else?

Last edited by Grobbendonk; 10-15-2021 at 05:11 PM.
 
Old 10-15-2021, 08:35 PM   #6
mrmazda
LQ Guru
 
Registered: Aug 2016
Location: SE USA
Distribution: openSUSE 24/7; Debian, Knoppix, Mageia, Fedora, others
Posts: 5,878
Blog Entries: 1

Rep: Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078
Quote:
Originally Posted by Grobbendonk View Post
Code:
...
Graphics:  Device-1: Intel UHD Graphics vendor: CLEVO/KAPOK driver: i915 v: kernel bus ID: 00:02.0 chip ID: 8086:9b41 
           Display: server: X.Org 1.20.11 driver: i915 compositor: gnome-shell resolution: 1920x1080~60Hz 
           OpenGL: renderer: Mesa Intel UHD Graphics (CML GT2)
...
           gcc: 9.3.0 alt: 9 Shell: bash (sudo) v: 5.0.17 running in: terminator inxi: 3.0.38...
OP has Intel Comet Lake GT2, quite a bit newer than ondoho's 530/Sky Lake(?), and likely not yet entirely debugged as of the X version shown by inxi, which by the way is a buggy antique. To use inxi with considerably fewer bugs, and improved output options, you may try upgrading it via the -U switch. Pop!_OS may have disabled -U, in which case, best to follow the upstream instructions here before using it again. And, any time you're pasting command output here, please enclose it in code tags (#), as you see ondoho and I have done, to preserve readability.

Quote:
Am I right in thinking that's normal for an off-the-shelf Xorg install? And that if I want to start playing with settings, I can create /etc/X11/xorg.conf.d/20-intel.conf and start setting overriding parameters in there? I don't need to do anything else?
It's either there, or possibly various kernel command line parameters. Or, ask of the Intel driver writers on their mailing list. Someone there may suggest your best option and/or whether it's a known and/or correctable problem.
 
Old 10-15-2021, 09:28 PM   #7
Grobbendonk
LQ Newbie
 
Registered: Jul 2004
Posts: 24

Original Poster
Rep: Reputation: 0
Sorry, I'm used to forums that do formatting a lot better, it's been a while since I was here.

I know inxi is old, but as it was suggested, I thought it might be of use to the person who mentioned it.

I am not sure what you mean by "It's either there, or possibly various kernel command line parameters". I already said the file is not there, and that the install is off-the-shelf, so unless you know what those kernel command line parameters are for an off-the-shelf install and have forgotten to explain what that means, I'm stuck on what you're getting at.

To me, the important part of my follow-up question was "can I just create the config file and start putting settings in it?". I can't find any coherent explanation of if I can do that. There's lots of stuff on what I might put in it, which I will work through, but I can't see if it really is just "create the file". I've been burned before by "create an override file, but you will need to also set a flag to tell the software to actually read the overrides" and by "if you create this file and get it wrong, everything stops working".
 
Old 10-15-2021, 09:57 PM   #8
mrmazda
LQ Guru
 
Registered: Aug 2016
Location: SE USA
Distribution: openSUSE 24/7; Debian, Knoppix, Mageia, Fedora, others
Posts: 5,878
Blog Entries: 1

Rep: Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078
Quote:
Originally Posted by Grobbendonk View Post
I know inxi is old, but as it was suggested, I thought it might be of use to the person who mentioned it.
It's useful regardless, just much better with current version than from the antique shipped by the OS, which omits useful options later added, besides including copious bugs.

Quote:
I am not sure what you mean by "It's either there,
I meant create it, use it modify it. You can't do any permanent damage with it.

Quote:
or possibly various kernel command line parameters".
Kernel driver options generally get added to grub stanza's kernel command lines, while display driver options go in config files. The general purpose of /etc/ is for global/administrator options.

Quote:
To me, the important part of my follow-up question was "can I just create the config file and start putting settings in it?".
Absolutely yes.
 
1 members found this post helpful.
Old 10-16-2021, 01:00 AM   #9
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
Quote:
Originally Posted by Grobbendonk View Post
Am I right in thinking that's normal for an off-the-shelf Xorg install? And that if I want to start playing with settings, I can create /etc/X11/xorg.conf.d/20-intel.conf and start setting overriding parameters in there?
Yes.

I am aware that our hardware differs and possibly also many software versions (for example, I do not use a compositor), but the error description is similar enough to encourage you to try these things.
For my specific situation there was no setting that would allow me to play games and watch video (with GPU accelaration), and have no artefacts on the screen - with the modesetting driver.
With the intel driver, it's almost the other way round: almost all settings "Just Work".
I think it's no coincidence that the archwiki still recommends it.
Which reminds me, please make sure to check out both links in my last post, they help significantly in understanding what I'm rambling about here.

FWIW, I have settled on the following now: /etc/X11/xorg.conf.d/20-intel.conf:
Code:
# see wiki.archlinux.org/title/Intel_graphics#Xorg_configuration
Section "Device"
    Identifier  "Intel Graphics"
    Driver      "intel"
    #Driver     "modesetting"
    Option       "TearFree"    "false"
    # AccelMethod: one of sna (default), uxa, or blt (case INsensitivie?)
    #Option      "AccelMethod"  "sna"
    Option "RelaxedFencing" "true"
    # man.archlinux.org/man/intel.4#CONFIGURATION_DETAILS says "Default: Enabled for G33 and later"
EndSection
Quote:
I don't need to do anything else?
As I wrote in post #4:
Quote:
The "modesetting" driver is (already) built into the kernel, the "intel" driver requires installation of xf86-video-intel (or xserver-xorg-video-intel on Debian).
I'm guessing it's the latter for Ubuntu-based Pop_OS.

Please go back to my post #3 and check at least /proc/cmdline for the unlikely case that you have something in there that has a bearing on this situation (look for the keyword "intel" or "i915").
The grep command will help you understand what's going on - if you want, execute it any time you make a change to /etc/X11/xorg.conf.d/somethingsomethingintel.conf, that is after you logged out/in.
If you want to do some testing, keep in mind that you only need to restart the Xorg server (i.e. log out of the graphical session and back in) after every change, not the whole machine.
 
Old 10-16-2021, 02:33 AM   #10
mrmazda
LQ Guru
 
Registered: Aug 2016
Location: SE USA
Distribution: openSUSE 24/7; Debian, Knoppix, Mageia, Fedora, others
Posts: 5,878
Blog Entries: 1

Rep: Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078
Quote:
Originally Posted by ondoho View Post
As I wrote in post #4:
Quote:
The "modesetting" driver is (already) built into the kernel, the "intel" driver requires installation of xf86-video-intel (or xserver-xorg-video-intel on Debian).
I'm guessing it's the latter for Ubuntu-based Pop_OS.
The mode setting services, aka KMS, kernel device driver (module) for our Intel IGPs is named i915. We have no other option.

The "modesetting" is the DIX (Device Independent X) display driver provided by the Xorg server package, a newer technology that supports GPUs for which a kernel module providing KMS exists, which includes AMD/ATI, Intel and NVidia. It's the technical default, but because most distros ship a meta-package that installs xf86-video-*, it may or may not be the selected driver in any given distro.

The old technology, Intel-specific, DDX (Device Dependent X) display driver upstream, and in some distros, is provided by the xf86-video-intel package, and renamed xserver-xorg-video-intel by Debian and its derivatives (e.g. Pop!_OS), and other names by some other distros. The xf86-video-intel driver has had no official release in over 7 years, in part due to who pays for it - Intel - and what else they are paid to do, which is (in part) maintaining the (newer technology; default) "modesetting" DIX.

For more info on graphics drivers I wrote a primer here.
 
Old 10-16-2021, 08:22 PM   #11
Grobbendonk
LQ Newbie
 
Registered: Jul 2004
Posts: 24

Original Poster
Rep: Reputation: 0
Thank you both, lots! You've fixed it!

99% of the fix was reading and understanding what you've both been talking about, and the last 1% was trial-and-error on me trying out some xorg/driver settings that looked related to things you've told me to look at. I went in hard by creating a new xorg config file (after you told me it was safe to do so, and what parameters to look at), and dropping every suggestion into it, but then trimming it down until I was left with this:

$ cat /etc/X11/xorg.conf.d/20-intel.conf
Section "Device"
Identifier "Intel Graphics"
Driver "intel"
Option "TearFree" "true"
EndSection

To be very English about it - I owe you both a pint or three.
 
Old 10-16-2021, 09:05 PM   #12
mrmazda
LQ Guru
 
Registered: Aug 2016
Location: SE USA
Distribution: openSUSE 24/7; Debian, Knoppix, Mageia, Fedora, others
Posts: 5,878
Blog Entries: 1

Rep: Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078
Quote:
Originally Posted by Grobbendonk View Post
To be very English about it - I owe you both a pint or three.
Next best thing: click on "Yes" in the posts that were helpful.
 
Old 10-17-2021, 03:21 AM   #13
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
@Grobbendonk: glad you fixed it, and please remember to mark your thread SOLVED (see my signature).
And a virtual pint will do!
We have talked about this before - while it hasn't had a release for 7 years, it is still being maintained & worked on. The latest commit to master was 9 months ago, and Archlinux uses that for its repo package. Ubuntu focal and later use commits from 2020.

I appreciate that DDX might run out evtl. but as of now, and for my specific setup, it's the only one that satisfies 100%.
 
Old 10-17-2021, 08:17 AM   #14
business_kid
LQ Guru
 
Registered: Jan 2006
Location: Ireland
Distribution: Slackware, Slarm64 & Android
Posts: 16,455

Rep: Reputation: 2353Reputation: 2353Reputation: 2353Reputation: 2353Reputation: 2353Reputation: 2353Reputation: 2353Reputation: 2353Reputation: 2353Reputation: 2353Reputation: 2353
@Grobbendonk: My box sucks too - it has nearly identical specs to yours.

IMO the intel driver does fractionally better 2D (I know that's heresy) but they're just handling too much stuff with the modesetting driver now, and the Ivy Bridge cards lost out a bit in the updates. The intel driver does NO 3D, and you'll end up very sad if you open google earth and try to get clever.

My laptop was made in 2012. There is a hardware upgrade due, and I intend to get a box, with no APU and individually replaceable component parts. That's the real solution.
 
Old 10-17-2021, 01:56 PM   #15
mrmazda
LQ Guru
 
Registered: Aug 2016
Location: SE USA
Distribution: openSUSE 24/7; Debian, Knoppix, Mageia, Fedora, others
Posts: 5,878
Blog Entries: 1

Rep: Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078Reputation: 2078
Quote:
Originally Posted by ondoho View Post
for my specific setup, it's the only one that satisfies 100%.
Some people do, some people don't. I have hundreds of installations of various distros. The only ones I run on the Intel DDX are the antiques that the Modesetting DIX doesn't support. That from which I type this:
Code:
# grep ntel /etc/X11/xorg.conf
grep: /etc/X11/xorg.conf: No such file or directory
# cat /etc/X11/xorg.conf.d/*intel.conf
cat: '/etc/X11/xorg.conf.d/*intel.conf': No such file or directory
# grep ntel /etc/X11/xorg.conf.d/*conf
# grep river /etc/X11/xorg.conf.d/*conf | egrep -v 'evdev|nput|mouse'
# inxi -GSy
System:
  Host: 00srv Kernel: 5.3.18-lp152.92-default x86_64 bits: 64
  Console: pty pts/0 Distro: openSUSE Leap 15.2
Graphics:
  Device-1: Intel 4th Generation Core Processor Family Integrated Graphics
  driver: i915 v: kernel
  Display: server: X.Org 1.20.3 driver: loaded: modesetting
  unloaded: fbdev,vesa resolution: 1920x1200~60Hz
  OpenGL: renderer: Mesa DRI Intel Haswell v: 4.5 Mesa 19.3.4
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] Illegible text + narrow horizontal distortion with i915 Intel driver. edbarx Linux - Hardware 10 10-12-2016 06:47 AM
looking for i915 parameter document or Is i915 good for N10? kaz2100 Debian 6 07-10-2011 06:17 PM
Feisty + Intel i915 module on 915GEVL motherboard + Xorg = scrambled display devghai Ubuntu 4 08-31-2007 02:10 AM
Mandriva 2007 Intel ipw2200 wireless problem, and question on i915 and Xorg thunderweasel Mandriva 1 10-07-2006 12:53 AM
Intigrated gfx and sound, or pci gfx and sound kybishop Linux - Hardware 0 03-25-2006 12:23 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Desktop

All times are GMT -5. The time now is 02:59 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration