There are several ways to find out the graphics card installed in your Linux system. Here are a few options:
lspci
command:
The lspci
command is a utility that displays information about the PCI buses and devices in your system. To use the lspci
command to find out the graphics card installed in your system, you can enter the following command at the terminal prompt:
lspci | grep -i vga
This will display the PCI devices in your system that are related to graphics, which should include the graphics card.
glxinfo
command:
The glxinfo
command is a utility that displays information about the OpenGL implementation on your system. To use the glxinfo
command to find out the graphics card installed in your system, you can enter the following command at the terminal prompt:
glxinfo | grep -i vendor
This will display the vendor and version of the OpenGL implementation on your system, which should include the graphics card.
inxi
command:
The inxi
command is a utility that displays a wide range of system information, including the graphics card installed in your system. To use the inxi
command to find out the graphics card installed in your system, you can enter the following command at the terminal prompt:
inxi -G
Regardless of which method you choose, the output of the command should provide information about the graphics card installed in your system. If you are having trouble finding or interpreting the output, you may want to consult the documentation for the command or search online for additional information.