Search code examples
processwine

How to list wine processes on the terminal screen?


I'm aware that I can run Task Manager by: wine taskmgr. However I'd like to have wine processes listed on the terminal screen similar to ps (but without using it), but for processes within Wine environment only.

How this can be achieved using Wine command-line tools?


Solution

  • I've found that this can be listed by using winedbg command, e.g.

    winedbg --command "info proc"
    

    Use the info proc winedbg command to list running processes and their Win32 pids.

    See: man winedbg.