![]() |
Arc Card not loading after reboot - Printable Version +- Jellyfin Forum (https://forum.jellyfin.org) +-- Forum: Support (https://forum.jellyfin.org/f-support) +--- Forum: Troubleshooting (https://forum.jellyfin.org/f-troubleshooting) +--- Thread: Arc Card not loading after reboot (/t-arc-card-not-loading-after-reboot) |
Arc Card not loading after reboot - Remotepall - 2025-03-06 Previous thread if relevant: https://forum.jellyfin.org/t-solved-closed-arc-gpu-s-vs-debian 750B Intel card. Ubuntu 24.x After previous thread the server worked. No issue. Today after work, scanning media fails immediately. Logs show "scan failed". Mounts are still mounty. Reboot server. Now it scans libaries fine. Now I can't stream any videos because the GPU hasn't loaded. What the hell am I doing wrong? I was under the impression that linux was here for stability. Why does the GPU suddenly stop getting recognised after a reboot? I am honestly so over troubleshooting this, what is the solution here? What do I need so I don't have to start troubleshooting a server at 11pm after working all day. I'm happy to pay someone to remote in and fix this once and for all. I don't know what logs or anything you need. Let me know. RE: Arc Card not loading after reboot - TheDreadPirate - 2025-03-06 Can you share your full Jellyfin logs via privatebin? And any related ffmpeg logs? Also share the output of this command. Code: sudo dmesg | grep i915 Is your media storage on a local disk or on a network share/NAS? RE: Arc Card not loading after reboot - Remotepall - 2025-03-09 I took a couple of days to rest and come back to this. Sorry for being so short before. I started from the beginning today and went through guides again. It is possible that the gpu not 'loading' was the kernel version not being up to date/below kernel required. That has now been updated to 6.13.6 which is 'loading' the GPU after each reboot. I keep using quotation marks because everything I'm looking at doesn't seem like it is loading properly? Code: uname -r Code: ls /dev/dri Code: dpkg -l | grep intel-media-va-driver Important note here: the title of the driver "intel-media-va-driver" is red in output. Code: dpkg-query -l intel-media-va-driver Code: sudo apt-get check Code: sudo apt-get install --reinstall intel-media-va-driver Code: journalctl -xe | grep intel-media Code: apt policy intel-opencl-icd Code: sudo /usr/lib/jellyfin-ffmpeg/vainfo --display drm --device /dev/dri/renderD128 Code: sudo /usr/lib/jellyfin-ffmpeg/ffmpeg -v verbose -init_hw_device vaapi=va:/dev/dri/renderD128 -init_hw_device opencl@va Code: intel_gpu_top Further googles regarding this hasn't been any help and ChatGPT has been defaulting to advise regarding ARC-A and i915. Small aside - found an issue with audio desync with AC3 Dolby Digital. But i had back burnered this until main issue sorted. RE: Arc Card not loading after reboot - Remotepall - 2025-03-09 ffmprg logs https://pastebin.com/E9z8R2hi Main log; I had to prune the top 5th of logs because it was to big. RE: Arc Card not loading after reboot - Host-in-the-Shell - 2025-03-09 I have an Intel Arc A380, although under Debian 12. Sometimes, after a kernel update and a reboot, the GPU "disappears" too. What I do is turn off the server entirely and then power it back on. For whatever reason, the card shows up again. Is just one of those things that I haven't bothered to troubleshoot and correctly pin down why it happens, but for now, check if that fixes it for you. RE: Arc Card not loading after reboot - TheDreadPirate - 2025-03-09 If you're on Ubuntu 24.04, but using kernel 6.13, does that mean you are using a custom kernel or Ubuntu's "mainline" kernel repo? Manually installing the kernel? If so, it is possible you don't have any kernel modules or kernel headers installed that are needed to make your GPU and Quick Sync work. Any particular reason you NEED to use kernel 6.13? Arc only needs 6.2 to work. RE: Arc Card not loading after reboot - Remotepall - 2025-03-09 Went with Mainline as the standard wasn't pushing any higher, I can't remember the exact number at the moment, but if I needed 6.12 for battlemage it was only giving 6.11. As for why so high, "bigger number gooderer" is my only rational. Can roll it back if needed. Today I was going to look into https://github com/intel/vpl-gpu-rt and compile it. (2025-03-09, 02:25 PM)Host-in-the-Shell Wrote: I have an Intel Arc A380, ... Debian 12. ... after a kernel update and a reboot, the GPU "disappears" too. ... turn off the server entirely and then power it back on.... the card shows up again.I believe that this got my machine to the current state where the device can be seen in /dev/dri/ but issue now is that it doesn't seem to be able to be used to render files. RE: Arc Card not loading after reboot - Remotepall - 2025-03-10 Update from today: Still broken. I posted up on Reddit because I forget that there is a subreddit for everything. LINK They provided a link to Intel's guide re installing their drivers. Followed this for Ubuntu 24.04 LTS. Still no luck. Device is still dropping out after reboots. Device is still not being utilised for transcoding. Previous tests with Code: sudo /usr/lib/jellyfin-ffmpeg/ffmpeg -v verbose -init_hw_device vaapi=va:/dev/dri/renderD128 -init_hw_device opencl@va Code: clinfo This output doesn't seem right? I would have expected some Intel branding or some such. Attached some of todays FF logs. Main log: https://pastebin.com/fZACSDh0 P.S. I didn't get around to doing the github compile thing. RE: Arc Card not loading after reboot - TheDreadPirate - 2025-03-10 You should rollback to Ubuntu's HWE kernel, which is currently 6.11. Keep in mind that LTS releases for Ubuntu are not going to update the base kernel for stability reason. Stability in terms of the OS not crashing and stability in terms of having a stable environment for developers to work on. They back port fixes and security patches to whatever kernel they landed on for the LTS release (6.8 for 24.04). They will provide an optional "Hardware enablement" (HWE) kernel for LTS releases based on the kernel used during the last incremental Ubuntu release (6.11 for Ubuntu 24.10). And Ubuntu published their HWE kernel for 24.04 a couple weeks ago. Code: sudo apt install linux-generic-hwe-24.04 That should be all that you need to run to install the 6.11 HWE kernel, including all the kernel modules and kernel headers needed to run Arc properly. But first roll back to 6.8 and remove the mainline kernel and remove the mainline repo. |