this post was submitted on 13 Aug 2024
1 points (100.0% liked)
KDE
5298 readers
7 users here now
KDE is an international technology team creating user-friendly free and open source software for desktop and portable computing. KDE’s software runs on GNU/Linux, BSD and other operating systems, including Windows.
Plasma 6 Bugs
If you encounter a bug, proceed to https://bugs.kde.org/, check whether it has been reported.
If it hasn't, report it yourself.
PLEASE THINK CAREFULLY BEFORE POSTING HERE.
Developers do not look for reports on social media, so they will not see it and all it does is clutter up the feed.
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I would probably try running
strace okular | grep openat
to see all the files it's trying to read and see if any aren't managed by your package manager and move those.
But the latest reply by felixernst in the kde discuss also looks helpful.
Oooh! Now that's a new idea! Thank you!
... uh, any tips on how to filter/process the output? There's like a bazillion lines going on about breeze-dark icons etc...
Oof yeah, some programs really love to touch a lot of stuff making strace kind of annoying to use. I usually end up chaining more
grep -v
pipes on the end as I find files I'm not interested in seeing e.g.Might help to first save it to a file so you don't have to keep relaunching okular as you add more inverse greps
@418teapot @dwawlyn BTW strace has some built-in filtering, e.g. strace --trace=openat instead of grepping for openat. Might make it a little easier.