(Non fatal) ERROR: ld.so: object 'libgtk3-nocsd.so.0' from LD_PRELOAD cannot be preloaded
morales2k opened this issue · 4 comments
I am running dug on ubuntu 22.04 using cinnamon.
Using Snap install
Dug works properly and all, but at the beginning of the output it always throws an error message:
Using .deb package install
Seems like I'm probably missing a dependency, as the software manager also stops the install when I try to use the .deb package to install dug. However, at that time, software manager fails to tell me which dependency I'm missing and just shows me an empty dialog with the warning and a colon at the end of the warning as if it was going to list something, but it doesn't.
Despite the warning it works well from the snap store, and I'm using it as is. I just wanted to let it be known that ubuntu 22.04 cinnamon may have issues, or maybe figure out if it's just my environment that's botched 😅
Sorry for the delay, thanks for letting me know! I'm running 22.04 but I'll try to reproduce this in a clean environment.
@morales2k I was not ever able to reproduce this but I did just update some stuff involving the snap packaging, would you mind updating and letting me know if its fixed with version 0.0.89
?
Greetings!
Thanks for looking into it!
I found on stack overflow something that led me to a solution for this message.
Adding the following on my .bashrc file fixed it.
[ -e /usr/lib/x86_64-linux-gnu/libgtk3-nocsd.so.0 ] && export LD_PRELOAD=/usr/lib/x86_64-linux-gnu/libgtk3-nocsd.so.0
Seems it was an issue in my desktop environment after all. Using that snippet and a function to actually write dug
in the cli;
# functions
function dug() {
( unfrl-dug $* )
}
Prior to this snippet in the .bashrc file, after the snap updated, I was still getting the msg in the command's output.
I want to apologize for your time wasted trying to reproduce this as it is now evident it was an issue entirely on my end and I totally lacked the knowledge to spot it early on. That said; I'll take this chance to thank you for your attention and for an awesome tool. 👍🏽
No problem at all @morales2k :)