contact me at alex01763@gmail.com link\
As of writing this article, Davinci Resolve 19 has issues with dealing with some packages in Ubuntu-derived distros. As a Linux mint user, here’s my finding of how to fix this problem. \
- Extract the Davinci installation package if you haven’t already
- Run
./Davinci_Resolve_19.x_linux.run --appimage-extract
#x is the version number. 1.1 as of writing. cd
intosquashfs-root
and runsudo ./AppRun -i
. It will display the packages missing. Mine waslibasound2-0.0.0
libapr1-0.0.0
libaprutil1-0.0.0
nano ./AppRun
or use your editor of choice to editAppRun
- Under
function check_ubuntu_package_deps()
delete the missing package names. The suse funtion is above so double check if you’re editing the right one. - Run
sudo ./Apprun -i
again, you should be able to install. - Create a
fix-resolve.sh
or a script with some similar name. - Paste the content below
#!/bin/bash
# Array con los nombres de las bibliotecas
libraries=(
"libglib-2.0.so.0"
"libgobject-2.0.so.0"
"libgstreamer-1.0.so.0"
"libgstsdp-1.0.so.0"
"libgstwebrtc-1.0.so.0"
"libgio-2.0.so.0"
"libgmodule-2.0.so.0"
"libgstrtp-1.0.so.0"
"libgstpbutils-1.0.so.0"
"libgstbase-1.0.so.0"
"libgstvideo-1.0.so.0"
"libgstaudio-1.0.so.0"
"libgsttag-1.0.so.0"
"liborc-0.4.so.0"
)
# Loop para crear los enlaces simbólicos
for lib in "${libraries[@]}"; do
ln -sf "/usr/lib/x86_64-linux-gnu/$lib" /opt/resolve/libs/
done
sudo chmod +x fix-resolve.sh
andsudo fix-resolve.sh
I got the answer from this stackoverflow answer. I hope you find it helpful.
You can play my games at https://dl.thinkingdarusik.com unless it is for sale on other platforms(such as Steam)