Post #1110195
2026-04-10 08:58 UTC
Seemed to be ```/proc/4212``` but its gone after I killed the process.
Replies (2)
-
@ClassyHatter@sopuli.xyz 2026-04-10 09:10
/proc is a special directory that is populated by procfs, a special kind of filesystem. It contains information about running processes. Each sub-directory contains information for one process. When you launch an application, it's assigned some process id. Every time you launch the application, it gets a different process id. You can try and find the application by running `which windows`. If the application is in your PATH, that tells where it is.
-
@non_burglar@lemmy.world 2026-04-10 15:52
Use ```ps -ef``` to find the source of the file.