DaVinci Resolve: Difference between revisions
SeniorMatt (talk | contribs) Described an Issue in DaVinci Resolve with latest intel-compute-runtime-legacy1 and provided a way to fix it. |
Document Resolve Studio potentially needing a UDEV rule to get access to the USB License dongle |
||
| (3 intermediate revisions by 2 users not shown) | |||
| Line 112: | Line 112: | ||
If you can spot a line similar to <code>Cannot mix incompatible Qt library (5.15.12) with this library (5.15.2)</code>, and have configured QT options in your NixOS configuration (<code>qt.enable = true;</code>), try disabling them. | If you can spot a line similar to <code>Cannot mix incompatible Qt library (5.15.12) with this library (5.15.2)</code>, and have configured QT options in your NixOS configuration (<code>qt.enable = true;</code>), try disabling them. | ||
=== Resolve Studio crashes during License check with USB dongle === | |||
When Resolve Studio starts fine as root, but crashes when you are trying to run it as a normal user and you are using a USB License Key Dongle you might need to add a UDEV rule to allow user access to the USB device<ref>https://github.com/zelikos/davincibox#resolve-studio-crashes-on-checking-licences</ref>:<syntaxhighlight lang="nix"> | |||
# DaVinci Resolve UDEV | |||
services.udev.extraRules = '' | |||
SUBSYSTEM=="usb", ATTR{idVendor}=="096e", MODE="0664", GROUP="users", TAG+="uaccess" | |||
''; | |||
</syntaxhighlight> | |||
=== Resolve crashes on Edit/Fusion tab with Intel iGPU === | === Resolve crashes on Edit/Fusion tab with Intel iGPU === | ||
If you are using <code>intel-compute-runtime-legacy1</code> and DaVinci Resolve crashes whenever you try to switch to Edit or Fusion tab, it indicates the issue with the latest package. If you want to learn more about how | If you are using <code>intel-compute-runtime-legacy1</code> and DaVinci Resolve crashes whenever you try to switch to Edit or Fusion tab, it indicates the issue with the latest package. If you want to learn more about how pinning packages to specific versions works, you can read [[FAQ/Pinning Nixpkgs|this article]]. | ||
Here's the solution for [[Defining NixOS as a flake|flake-based]] NixOS system: | Here's the solution for [[NixOS system configuration#Defining NixOS as a flake|flake-based]] NixOS system: | ||
{{File|3=inputs = { | {{File|3=inputs = { | ||
| Line 160: | Line 168: | ||
<syntaxhighlight lang="nix">hardware.graphics = { | <syntaxhighlight lang="nix">hardware.graphics = { | ||
enable = true; | enable = true; | ||
}; | |||
hardware.amdgpu.opencl.enable = true;</syntaxhighlight> | |||
[[Category:Applications]] | [[Category:Applications]] | ||