Is Intel graphics driver auto-installed in Ubuntu? I want to see it. Is there any command line to check it out?
My desktop icons looks big and some web pages tab are not showing text completely.
Output of lshw -C video
:
*-display
description: VGA compatible controller
product: Xeon E3-1200 v3/4th Gen Core Processor Integrated Graphics Controller
vendor: Intel Corporation
physical id: 2
bus info: pci@0000:00:02.0
version: 06
width: 64 bits
clock: 33MHz
capabilities: msi pm vga_controller bus_master cap_list rom
configuration: driver=i915 latency=0
resources: irq:28 memory:f7800000-f7bfffff memory:e0000000-efffffff ioport:f000(size=64) memory:c0000-dffff
I think it is a video driver problem. So I think I need to install drivers. How do I install that?
lsmod
will list your kernel modules (drivers), though I'd usesudo lshw -C video
to list your hardware (of class video) and look for the module being used in the 'driver=' configuration line. For most intel drivers, intel themselves add them to the linux source code so as long as your unstated release contains a kernel with driver for your hardware - you're good. This doesn't apply to all intel cards, but release (and its kernel) is the largest clue (along with your video card & it's age) – guiverc Feb 05 '19 at 12:38sudo lshw -C video
*-display
– Salim Feb 05 '19 at 14:23description: VGA compatible controller product: Xeon E3-1200 v3/4th Gen Core Processor Integrated Graphics Controller vendor: Intel Corporation physical id: 2 bus info: pci@0000:00:02.0 version: 06 width: 64 bits clock: 33MHz capabilities: msi pm vga_controller bus_master cap_list rom configuration: driver=i915 latency=0 resources: irq:28 memory:f7800000-f7bfffff memory:e0000000-efffffff ioport:f000(size=64) memory:c0000-dffff