From 42a528ded9c0df96d04b60ce8714aa6ef471e451 Mon Sep 17 00:00:00 2001 From: Yuwen Hu <54161268+Oscilloscope98@users.noreply.github.com> Date: Mon, 28 Oct 2024 14:12:07 +0800 Subject: [PATCH] Small update to MTL iGPU Linux Prerequisites installation guide (#12281) * Small update MTL iGPU Linux Prerequisites installation guide * Small fix --- docs/mddocs/Quickstart/install_linux_gpu.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/mddocs/Quickstart/install_linux_gpu.md b/docs/mddocs/Quickstart/install_linux_gpu.md index f87b2ff1..695d156e 100644 --- a/docs/mddocs/Quickstart/install_linux_gpu.md +++ b/docs/mddocs/Quickstart/install_linux_gpu.md @@ -65,7 +65,7 @@ Next, you need to enable GPU driver support on kernel `6.5.0-35-generic` through ```bash export FORCE_PROBE_VALUE=$(sudo dmesg | grep i915 | grep -o 'i915\.force_probe=[a-zA-Z0-9]\{4\}') -sed -i "/^GRUB_CMDLINE_LINUX_DEFAULT=/ s/\"\(.*\)\"/\"\1 $FORCE_PROBE_VALUE\"/" /etc/default/grub +sudo sed -i "/^GRUB_CMDLINE_LINUX_DEFAULT=/ s/\"\(.*\)\"/\"\1 $FORCE_PROBE_VALUE\"/" /etc/default/grub ``` > [!TIP] @@ -103,7 +103,7 @@ echo "deb [arch=amd64,i386 signed-by=/usr/share/keyrings/intel-graphics.gpg] htt sudo apt update -apt-get install -y libze1 intel-level-zero-gpu intel-opencl-icd clinfo +sudo apt-get install -y libze1 intel-level-zero-gpu intel-opencl-icd clinfo ``` @@ -122,7 +122,7 @@ You could then verify whether the GPU driver is functioning properly with: clinfo | grep "Device Name" ``` -whose output should contain `Intel(R) Arc(TM) Graphics`. +whose output should contain `Intel(R) Arc(TM) Graphics` or `Intel(R) Graphics` based on your GPU model. > [!TIP] > You could refer to the [official driver guide for client GPUS](https://dgpu-docs.intel.com/driver/client/overview.html#installing-client-gpus-on-ubuntu-desktop-22-04-lts) for more information.