Summary: | sys-auth/polkit-0.120_p20220221 Permission denied: '/usr/local/lib/libduktape.so' | ||
---|---|---|---|
Product: | Gentoo Linux | Reporter: | Steven Davies <gentoo-bugzilla2> |
Component: | Current packages | Assignee: | Gentoo Linux bug wranglers <bug-wranglers> |
Status: | RESOLVED INVALID | ||
Severity: | normal | ||
Priority: | Normal | ||
Version: | unspecified | ||
Hardware: | AMD64 | ||
OS: | Linux | ||
Whiteboard: | |||
Package list: | Runtime testing required: | --- |
Description
Steven Davies
2022-05-21 09:18:30 UTC
This seems a lot like you've got a library in /usr/local which you need to remove. Nope, nothing unusual in /usr/local: $ /bin/ls -laR /usr/local/lib /usr/local/lib: total 0 drwxr-x--- 1 root root 0 Jun 22 2019 . drwxr-xr-x 1 root root 44 Jun 22 2019 .. $ /bin/ls -laR /usr/local/lib64/ /usr/local/lib64/: total 0 drwxr-xr-x 1 root root 0 Oct 30 2018 . drwxr-xr-x 1 root root 44 Jun 22 2019 .. $ /bin/ls -laR /usr/local/bin/ /usr/local/bin/: total 8 drwxr-xr-x 1 root root 42 Nov 11 2018 . drwxr-xr-x 1 root root 44 Jun 22 2019 .. lrwxrwxrwx 1 root root 45 Nov 11 2018 exa -> /home/steven/code/rust/exa/target/release/exa -rw-r--r-- 1 root root 0 Oct 30 2018 .keep -rwxr-xr-x 1 root root 283 Nov 5 2018 systemd-email The direct cause seems to be that the permission (file mode) of your /usr/local/lib is set to 0750. I guess this can be worked around by: # chmod 0755 /usr/local/lib Yup, that solved it. No idea how that happened or why it's only causing a problem now. Thanks. |