How to view your video card model in its corresponding drive in ubuntu installation

1, an input terminal:

lspci -vnn | grep VGA -A 12

The first line of output will have hardware manufacturer, model name / serial number, and PCI ID.

2, another input:

lshw -C display

Graphics displays the signal information

3, enter:

sudo lshw -c video | grep coniguration

NIC driver to use the name display

4, enter:

modinfo vmwgfx

Check the network card driver details

5, enter:

glxinfo | grep OpenGL

Check the hardware acceleration. Enable hardware-based accelerated 3D.

6, enter:

ubuntu-drivers devices

Driving displays various information (including the driver and graphics)

7, enter:

sudo ubuntu-drivers autoinstall

Install the corresponding graphics driver (restart the computer after installation).

 

Guess you like

Origin www.cnblogs.com/vcan123/p/11902213.html