Muse Sounds Manager Has Issues Downloading On Rocky

Hey,

Firstly, I’m not sure this exactly belongs here. I don’t entirely know if there’s a setup issue with Rocky or if it’s an issue with the software. But I figured I would ask here to rule this out at least.

I’ve downloaded MuseScore 4 and Muse Sounds Manager however when I try and download the Muse Sounds from the Manager I get these two errors:

curl_easy_perform() failed: Problem with the SSL CA cert (path? access rights?)

2025-02-09 21:32:05.3975|ERROR|Muse.Client.Linux.Interop.MuseHubLogging|No instruments found or could not download map!

I’m not sure if there’s any kind of setup I can do from the Rocky side to fix this curl_easy_perform() error? Has anyone encountered something similar to this at all?

Thanks

I would look through the rest of the logs and see where it’s looking for the CA certificates. The CA certificates typically live in: /etc/pki/tls/certs

If it’s looking in /usr instead, you should see if there’s a way to point to the above location.

Hmm yea, I’ve tried the above steps. There isn’t really any info (that I can see) in the logs to point out where it’s looking for the certificates. But I’m tried pointing it to specific folders that have them to no avail.

If it doesn’t tell you, you can always use strace. Run it manually in a shell:
strace -o /tmp/musetrace.log -f WhateverCmdlineIsNeeded
After the error occurs, have a look in /tmp/musetrace.log In there, you will
find the path of any files it tries to open (successfully or not).
To filter out other stuff, you can grep for calls to open like this:
grep " open" /tmp/musetrace.log