Post #3329552
2026-06-16 00:40 UTC
Packages are installed and removed from disk, but unless you kill the offending process(es), it might remain active in memory, depending on the quality of the install/remove script.
You can use ps, pgrep or any number of utils to figure out which process is the one to get rid of, and just kill it.
Replies (1)
-
@ScoffingLizard@lemmy.dbzer0.com 2026-06-17 13:46
Wait, pgrep exists and I don’t have to ``` Ps ax |grep processName all the time? Thanks!