> ## Content Index
> Fetch the complete content index at: https://www.moeox.com/llms.txt
> Use this file to discover other available public pages before exploring further.

# N5105 jasper lake 开启硬件转码方法
- URL: https://www.moeox.com/n5105-jasper-lake--e5-bc-80-e5-90-af-e7-a1-ac-e4-bb-b6-e8-bd-ac-e7-a0-81-e6-96-b9-e6-b3-95/
- Published: 2022-05-03T05:01:13.000Z
- Updated: 2022-05-03T05:01:13.000Z
- Author: asumi233
- Tags: Linux, #wp, #wp-post, #Import 2026-09-01 23:51

本教程适用proxmox7与linux，内核版本需要在5.10以上

因为jasper lake阉割了某些单元，所以在linux下驱动n5105的核显就需要开启huc认证

开启huc认证需要设置guc某些参数，需要编辑grub

编辑/etc/default/grub，在GRUB\_CMDLINE\_LINUX\_DEFAULT添加如下：

```
i915.enable_guc=2 ##添加此参数

##以下是开启直通与开启huc认证的引导行参数
GRUB_CMDLINE_LINUX_DEFAULT="intel_iommu=on i915.enable_guc=2 quiet"
```

添加完以后需要执行以下命令：

```bash
update-grub2   ##执行完成后需要重启生效
reboot
```

n5105系列CPU不支持直通核显！请注意此点，最多是映射给lxc或者本机使用

proxmox lxc 映射方法见：[https://www.moeox.com/152.html](https://www.moeox.com/proxmox-lxc%e7%9b%b4%e9%80%9a%e6%a0%b8%e6%98%be%e6%96%b9%e6%b3%95/)

在emby中使用，emby需要版本在4.7及以上，目前4.7为beta版本，转码里面全部只选intel quick sync，转码效率非常高，可4K HDR 高码率 转码 流畅无卡顿 hdr映射正常。

题外内容:guc引导项不同的参数不同的作用，具体如下：

```bash
i915.enable_guc=1    ## 启用GuC提交和电源管理
i915.enable_guc=2    ## 只启用HuC认证
i915.enable_guc=3    ## 将两个功能结合在一起
##在内核4.16之前，HuC认证是通过设置：
i915.enable_guc_loading=1   ##4.16之前使用此参数开启huc认证
```