Ubuntu – How to list a Windows process on Ubuntu Terminal in WSL

command linewindows-subsystem-for-linux

Now it's possible to use the Ubuntu terminal or bash shell on Windows.

How can I list Windows processes using ps or htop?

Best Answer

In Windows 10 Bash You can execute:

ps -ef

You can also install htop using:

sudo apt-get install htop

And then execute

htop

However the Windows 10 Bash is limited to the user running it.

You won't be able to access Windows 10 system as root.

You can treat it as a limited Ubuntu sandbox in Windows 10

More info MSDN bash

Related Question