# Frequently Asked Questions (FAQ) This document provides answers to common troubleshooting questions related to general purpose GPUs and their installation on Linux. For quick and effective solutions, browse through the topics covered. ## How to check the GPU driver version installed by DKMS? The following commands returns the GPU driver version: ```bash dkms info | grep intel-i915-dkms ``` ## How to map the DKMS kernel driver codes with tags? The DKMS module source is developed and published in the [Intel GPU i915 Backports](https://github.com/intel-gpu/intel-gpu-i915-backports/) project. To map your installed kernel module to the source version, check the DKMS status after installation: ```bash dkms status ``` You should see a result similar to the following: ```bash intel-i915-dkms, 0.5834.220609.0.1011, 5.14.0-1034-oem, x86_64: installed ``` In this case, the version of the intel-i915-dkms is `0.5834.220609.0.1011`. Within that version string, `5834` is the build number. You can then look at the tags on the Intel GPU i915 Backports [tags](https://github.com/intel-gpu/intel-gpu-i915-backports/tags). Using `5834` as the example, you can see `UBUNTU2204_22WW32_392_**5834**_220609.0` as the source tag. ## Which open source projects are provided by Intel? Intel provides packages for the following projects: - [Compute Runtime](https://github.com/intel/compute-runtime) - [Media Driver](https://github.com/intel/media-driver) - [Media SDK](https://github.com/Intel-Media-SDK/MediaSDK) (no longer under development) - [Intel Graphics Compiler](https://github.com/intel/intel-graphics-compiler) - [Mesa](https://github.com/intel-gpu/Mesa) - [opencl_clang](https://github.com/intel/opencl-clang) - [vc-intrinsics](https://github.com/intel/vc-intrinsics) - [intel-onevpl](https://github.com/oneapi-src/oneVPL-intel-gpu) - [vpl_dispatcher](https://github.com/oneapi-src/oneVPL) - [cm_clang](https://github.com/intel/cm-compiler) - [gmmlib](https://github.com/intel/gmmlib/) - [Level Zero](https://github.com/oneapi-src/level-zero/) - [libva](https://github.com/intel/libva/) - [ME TEE Library](https://github.com/intel/metee/) - [Metrics Discovery](https://github.com/intel/metrics-discovery/) Backported kernel modules: - [i915](https://github.com/intel-gpu/intel-gpu-i915-backports) - [CSE](https://github.com/intel-gpu/intel-gpu-cse-backports) - [PMT](https://github.com/intel-gpu/intel-gpu-pmt-backports) - [Firmware](https://github.com/intel-gpu/intel-gpu-firmware)