From 2eb70c8ccda09ccaad3e716b09d36580d0c02d8a Mon Sep 17 00:00:00 2001 From: Aleksandr Oleinikov <10602045+tannisroot@users.noreply.github.com> Date: Mon, 23 Oct 2023 04:29:51 +0300 Subject: [PATCH] Add clarification about guc/huc check tutorial On my system, the Intel graphics device was assigned to `1` and running the last 2 commands that query guc/huc status resulted in an no file found error. This clarification could be useful to novice linux users. --- .../hardware-acceleration/intel.md | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/docs/general/administration/hardware-acceleration/intel.md b/docs/general/administration/hardware-acceleration/intel.md index 592275c8b..a56417cdb 100644 --- a/docs/general/administration/hardware-acceleration/intel.md +++ b/docs/general/administration/hardware-acceleration/intel.md @@ -906,13 +906,20 @@ Root permission is required. sudo cat /sys/kernel/debug/dri/0/gt/uc/guc_info sudo cat /sys/kernel/debug/dri/0/gt/uc/huc_info ``` + + - If you get a `No such file or directory` error when running the last two commands, try querying a `dri` device with a different number, for example `1`: - On very old kernels (4.16-) the last two commands can be like this: + ```shell + sudo cat /sys/kernel/debug/dri/1/gt/uc/guc_info + sudo cat /sys/kernel/debug/dri/1/gt/uc/huc_info + ``` - ```shell - sudo cat /sys/kernel/debug/dri/0/i915_guc_load_status - sudo cat /sys/kernel/debug/dri/0/i915_huc_load_status - ``` + - On very old kernels (4.16-) the last two commands can be like this: + + ```shell + sudo cat /sys/kernel/debug/dri/0/i915_guc_load_status + sudo cat /sys/kernel/debug/dri/0/i915_huc_load_status + ``` 5. Now you can safely enable the Intel Low-Power encoder in the Jellyfin dashboard.