Hey everyone… has anyone tried to install resovle on rocky 10?? any luck?
Best
Hey everyone… has anyone tried to install resovle on rocky 10?? any luck?
Best
Hi I did installed on my Lenovo Thinkpad Gen6 AMD. Everything install without major issues. I needed to install some libraries zlib. I also running with the skip parameter for checking the exact library.
When everything was installed and trying to run resolve I got an issue related with ./resolve: symbol lookup error: /lib64/libpango-1.0.so.0: undefined symbol: g_once_init_leave_pointer
Which I did the next to remove the problems.
cd /opt/resolve/libs
sudo mkdir disabled-libraries
sudo mv libglib* disabled-libraries
sudo mv libgio* disabled-libraries
sudo mv libgmodule* disabled-libraries
After that I can launch resolve, the issue I am getting is that my laptop is AMD Strix Halo. I cannot install AMD rocm-opencl. I have been unable to find the repo or the package if exist one. I also search for all the repo from Rocky Linux and I did not find anything that said AMD Opencl or ROCM. Funny they have a version for intel.
So in short answers, yes you can install it, making it work with AMD opencl is something I have been unable to figure it out, in fedora and archlinux is pretty simple to install amd software but here on Rocky Linux different story.
Also the official AMD package driver will not work with my system because AMD Strix Halo is not supported for that architecture.
yeah i think zlib is a problem as its not possible with 10 i htink…
well i just switched over to fedora to try… and it was a nightmare, couldnt get my nvidia to work at all…
I was able to installed. The issue is that I cannot run it because AMD does not support ROCM yet for RHEL 10, no way to get ROCM libraries for my Strix Point GPU. I installed on my desktop Rocky Linux 9.6, that one works awesome with my system. Maybe you need to go back to RL 9.6 for now. I thought nvidia support already RHEL 10, if they do , you should be able to install your GPU drivers on RL 10 and be able to use CUDA support.
Hi Dude.
I was able to get an Nvidia card finally on my system. It was pretty easy to install nvidia drivers and davinci resolve.
From the next section. I just used the part of the disable Nouveau
I followed the instructions from nvidia. I installed propertary - open driver from nvidia.
Follow the sections for Rocky Linux 10
I used the network version, which means you need to install nvidia driver repo.
From this section:
You need to navigate on your browser and find the architecture and version you want to install. I installed as following.
Then I installed Davinci resolve. Davinci will show you an error. You need to install some libraries zlib etc…. Even after installed zlib it will make you an error. So you need to use SKIP flag that shows on the terminal while installing it.
After that you will need to install another library which is missing, this after starting resolve. Always start resolve from command line, in order to see what is missing in special when is a new install.
Library missing not detect by the install.
./resolve: error while loading shared libraries: libcrypt.so.1: cannot open shared object file: No such file or directory
sudo dnf install libxcrypt-compat
Then when you will get the following error.
./resolve: symbol lookup error: /lib64/libpango-1.0.so.0: undefined symbol: g_once_init_leave_pointer
You need to eliminate the libraries as follow.
cd /opt/resolve/libs
sudo mkdir disabled-libraries
sudo mv libglib* disabled-libraries
sudo mv libgio* disabled-libraries
sudo mv libgmodule* disabled-libraries
After that Resolve is running and happy like never before.
I hope this help you.
sorry, ive been away for a while… hows it all going? working well??
Working Awesome!.
It just rocks!.
Have you got a problem of the braw player not having its icon??
Yes the picture is missing from the icons for two of the applications but they still work good. If you want to fix the problem of the icon you will need to find the .Desktop file from the application and find the icon on png, jpg or svg and address directly or added on it.
I use the KDE version which the icons are missing for two of the davinci application but once you open them the icon show on the application running so far I remember. I personally don’t care about it. On my system i have an nvidia rtx 5080 the video transcode takes 1 minutes, on my macbook air 15 with m4 it takes 11 minutes. It just rocks using on linux plus the excellent support of nvidia for rhel10.
People say AMD is better on Linux, I don’t think so that anymore.
You can use the next scrip I did to figure it out how to name the icon or you can just create your own launcher with it. If you create your desktop file move it
/home/yourusername/.local/share/applications
clear
echo "Create your Desktop File"
if [[ -z "$1" ]] || [[ -z "$2" ]] || [[ -z "$3" ]] || [[ -z "$4" ]] || [[ -z "$5" ]] || [[ -z "$6" ]]; then
echo "FileName argument 1"
echo "Application Name 2"
echo "Path to Executable File 3"
echo "Path to Icon File 4"
echo "Name of Application Dock 5"
echo "Category 6"
echo "example $0 FileName ApplicationName PathToExecutable PathToIcon NameAppAtDock Utility"
else
echo "FileName argument $1"
echo File Contents
echo "Application Name $2"
echo "Path to Executable File $3"
echo "Path to Icon File $4"
echo "Name of Application Dock $5"
echo "Category $6"
#Create File
fileName=$1
fileName+=".desktop"
rm $fileName
touch $fileName
echo "[Desktop Entry]" >> $fileName
echo Type=Application >> $fileName
echo Name=$2 >> $fileName
echo Exec=$3 >> $fileName
echo Icon=$4 >> $fileName
echo Terminal=false >> $fileName
echo StartupWMClass=$5 >> $fileName
echo Categories=$6";" >> $fileName;
fi