• @mvirts
    link
    95 months ago

    How many KDE sessions are you running? Maybe post systemctl status run as root?

    • @MoshpiritOP
      link
      3
      edit-2
      5 months ago

      Thanks for replying! Only one session. Running systemctl status as root gave me this result. I could only find one /usr/bin/kwin_x11 --replace (ID: 4426) entry, though when I can see many others: 4426, 4427, 4429, 4430, 4433, 4434, 4436, 4442, 4443, 4444, 4445, 5871 10277, 10278, 10279, 12222, 12223, 12224, 12225, 12226, 12227 and 12228.

      • @mvirts
        link
        75 months ago

        You know I bet those are just the threads kwin is using, since memory usage is all the same. Linux threads are just processes that share everything. You may be able to look at your top (htop?) Options to show threads separately or together?

        • David Zaslavsky
          link
          fedilink
          45 months ago

          @mvirts @Moshpirit Yep, htop shows threads in green, so all of those shown in the image (except the first one probably) are threads. You can turn off display of threads in the settings.

          Or, if you enable tree display, the threads will display as children of their process.

            • David Zaslavsky
              link
              fedilink
              35 months ago

              @Moshpirit 👍

              If you have any experience with computer programming, I would definitely recommend looking up a tutorial on threads for your favorite programming language and writing a little program that uses them. The best way to understand what threads are is through practical experience.

              If not, hopefully you can find some good resources anyway! The gist is that threads are kind of like little mini-programs that run within a main program and can be used to do specific tasks that would otherwise “distract” the main program from its work. (That’s not exactly accurate, but it’s the best way I can think of to explain the basic idea in one sentence.)