Hi David,
I realize this is coming months after your original post, but if you're still looking for a solution, I think my script might help resolve the issues you've been experiencing.
I’ve created an Ansible script that automates the entire installation process of DaVinci Resolve on Ubuntu 24.04. It handles downloading the official installer, setting up symlinks to avoid downgrading dependencies, and detecting whether you're using an AMD, Intel, or Nvidia GPU to install the correct OpenCL libraries. The script also sets up the necessary udev rules for USB peripherals like DaVinci Panels and installs all the system icons and MIME files, so it should solve the problems you've encountered.
Here’s how you can try it out:
1. Install Git and Make if they aren’t already installed:
- Code: Select all
sudo apt install git make
2. Clone the repository:
- Code: Select all
git clone https://github.com/leinardi/JDInstaller.git
3. Switch to the repository directory:
- Code: Select all
cd JDInstaller
4. Check out the DaVinci Resolve branch (it’s disabled by default in the main script):
- Code: Select all
git checkout davinci
5. Run the installation:
- Code: Select all
make install TAGS=davinci_resolve
You can find the full script and more information here:
https://github.com/leinardi/JDInstallerLet me know if this helps, and feel free to reach out if you have any questions!